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