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