AssemblyElement.cs
13 lines
| 408 B
| text/x-csharp
|
CSharpLexer
cin
|
r269 | using System.Xml.Serialization; | |
namespace Implab.ServiceHost.Unity | |||
{ | |||
[XmlRoot("assembly", Namespace = Schema.ContainerConfigurationNamespace)] | |||
cin
|
r273 | public class AssemblyElement : ContainerItemElement { | |
cin
|
r269 | [XmlAttribute("name")] | |
public string AssemblyName { get; set; } | |||
cin
|
r273 | public override void Visit(ContainerContext context) { | |
cin
|
r270 | context.Visit(this); | |
cin
|
r269 | } | |
} | |||
} |