DefaultParameterElement.cs
11 lines
| 312 B
| text/x-csharp
|
CSharpLexer
cin
|
r270 | namespace Implab.ServiceHost.Unity | |
{ | |||
cin
|
r274 | public class DefaultParameterElement : InjectionParameterElement, ITextValue { | |
public string Value { | |||
get { return null; } | |||
} | |||
cin
|
r275 | public override void Visit(InjectionValueBuilder builder) { | |
cin
|
r274 | builder.Visit(this); | |
cin
|
r272 | } | |
cin
|
r270 | } | |
} |