//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//------------------------------------------------------------------------------
namespace System.Xml.Serialization {
using System;
///
///
/// [To be supplied.]
///
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Struct, AllowMultiple=false)]
public sealed class XmlSerializerAssemblyAttribute : System.Attribute {
string assemblyName;
string codeBase;
///
///
/// [To be supplied.]
///
public XmlSerializerAssemblyAttribute() : this(null, null) {}
///
///
/// [To be supplied.]
///
public XmlSerializerAssemblyAttribute(string assemblyName) : this(assemblyName, null) {}
///
///
/// [To be supplied.]
///
public XmlSerializerAssemblyAttribute(string assemblyName, string codeBase) {
this.assemblyName = assemblyName;
this.codeBase = codeBase;
}
///
///
/// [To be supplied.]
///
public string CodeBase {
get { return codeBase; }
set { codeBase = value; }
}
///
///
/// [To be supplied.]
///
public string AssemblyName {
get { return assemblyName; }
set { assemblyName = value; }
}
}
}