ValueElement.cs
13 lines
| 352 B
| text/x-csharp
|
CSharpLexer
cin
|
r273 | using System.Xml.Serialization; | |
namespace Implab.ServiceHost.Unity { | |||
public class ValueElement : AbstractRegistration, ITextValue { | |||
[XmlText] | |||
[XmlAttribute("value")] | |||
public string Value { get; set; } | |||
public override void Visit(ContainerContext context) { | |||
context.Visit(this); | |||
} | |||
} | |||
} |