ValueParameterElement.cs
12 lines
| 362 B
| text/x-csharp
|
CSharpLexer
cin
|
r272 | using System.Xml.Serialization; | |
cin
|
r274 | namespace Implab.ServiceHost.Unity { | |
public class ValueParameterElement : InjectionParameterElement, ITextValue { | |||
cin
|
r272 | [XmlText] | |
cin
|
r273 | [XmlAttribute("value")] | |
cin
|
r272 | public string Value { get; set; } | |
cin
|
r275 | public override void Visit(InjectionValueBuilder builder) { | |
cin
|
r274 | builder.Visit(this); | |
cin
|
r272 | } | |
cin
|
r270 | } | |
} |