ValueElement.cs
27 lines
| 655 B
| text/x-csharp
|
CSharpLexer
cin
|
r273 | using System.Xml.Serialization; | |
namespace Implab.ServiceHost.Unity { | |||
public class ValueElement : AbstractRegistration, ITextValue { | |||
[XmlAttribute("value")] | |||
public string Value { get; set; } | |||
cin
|
r274 | [XmlText] | |
public string Text { get; set; } | |||
string ITextValue.Value { | |||
get { | |||
return string.IsNullOrEmpty(Value) ? Text : Value; | |||
} | |||
} | |||
public string TypeName { | |||
get { | |||
return RegistrationType; | |||
} | |||
} | |||
public override void Visit(ContainerBuilder context) { | |||
cin
|
r273 | context.Visit(this); | |
} | |||
} | |||
} |