ValueParameterElement.cs
14 lines
| 367 B
| text/x-csharp
|
CSharpLexer
cin
|
r272 | using System.Xml.Serialization; | |
cin
|
r270 | namespace Implab.ServiceHost.Unity | |
{ | |||
public class ValueParameterElement : InjectionParameterElement | |||
{ | |||
cin
|
r272 | [XmlText] | |
cin
|
r273 | [XmlAttribute("value")] | |
cin
|
r272 | public string Value { get; set; } | |
internal override object Resolve(RegistrationContext context) { | |||
return context.Resolve(this); | |||
} | |||
cin
|
r270 | } | |
} |