SerializedParameterElement.cs
17 lines
| 470 B
| text/x-csharp
|
CSharpLexer
cin
|
r271 | using System.Xml; | |
using System.Xml.Schema; | |||
using System.Xml.Serialization; | |||
cin
|
r270 | namespace Implab.ServiceHost.Unity | |
{ | |||
cin
|
r271 | public class SerializedParameterElement : InjectionParameterElement { | |
cin
|
r273 | [XmlAttribute("href")] | |
public string Location { get; set; } | |||
cin
|
r271 | ||
[XmlAnyElement] | |||
public XmlElement[] Content { get; set; } | |||
cin
|
r272 | ||
internal override object Resolve(RegistrationContext context) { | |||
return context.Resolve(this); | |||
} | |||
cin
|
r270 | } | |
} |