You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
66
external/referencesource/System.Web.Extensions/Compilation/WCFModel/ReferencedAssembly.cs
vendored
Normal file
66
external/referencesource/System.Web.Extensions/Compilation/WCFModel/ReferencedAssembly.cs
vendored
Normal file
@ -0,0 +1,66 @@
|
||||
#region Copyright (c) Microsoft Corporation
|
||||
/// <copyright company='Microsoft Corporation'>
|
||||
/// Copyright (c) Microsoft Corporation. All Rights Reserved.
|
||||
/// Information Contained Herein is Proprietary and Confidential.
|
||||
/// </copyright>
|
||||
#endregion
|
||||
|
||||
using System;
|
||||
using XmlSerialization = System.Xml.Serialization;
|
||||
|
||||
#if WEB_EXTENSIONS_CODE
|
||||
namespace System.Web.Compilation.WCFModel
|
||||
#else
|
||||
namespace Microsoft.VSDesigner.WCFModel
|
||||
#endif
|
||||
{
|
||||
#if WEB_EXTENSIONS_CODE
|
||||
internal class ReferencedAssembly
|
||||
#else
|
||||
[CLSCompliant(true)]
|
||||
public class ReferencedAssembly
|
||||
#endif
|
||||
{
|
||||
private string m_AssemblyName;
|
||||
|
||||
/// <summary>
|
||||
/// Constructor
|
||||
/// </summary>
|
||||
public ReferencedAssembly()
|
||||
{
|
||||
m_AssemblyName = String.Empty;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Constructor
|
||||
/// </summary>
|
||||
public ReferencedAssembly(string assemblyName)
|
||||
{
|
||||
if (assemblyName == null)
|
||||
{
|
||||
throw new ArgumentNullException("assemblyName");
|
||||
}
|
||||
|
||||
m_AssemblyName = assemblyName;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// assembly name
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
/// <remarks></remarks>
|
||||
[XmlSerialization.XmlAttribute()]
|
||||
public string AssemblyName
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_AssemblyName;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_AssemblyName = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user