You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,69 @@
|
||||
#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
|
||||
{
|
||||
/// <summary>
|
||||
/// mapping between metadata namespace and CLR namespace
|
||||
/// </summary>
|
||||
/// <remarks></remarks>
|
||||
#if WEB_EXTENSIONS_CODE
|
||||
internal class NamespaceMapping
|
||||
#else
|
||||
[CLSCompliant(true)]
|
||||
public class NamespaceMapping
|
||||
#endif
|
||||
{
|
||||
private string m_TargetNamespace;
|
||||
private string m_ClrNamespace;
|
||||
|
||||
/// <summary>
|
||||
/// Target Namespace
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
/// <remarks></remarks>
|
||||
[XmlSerialization.XmlAttribute()]
|
||||
public string TargetNamespace
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_TargetNamespace;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_TargetNamespace = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Clr Namespace
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
/// <remarks></remarks>
|
||||
[XmlSerialization.XmlAttribute()]
|
||||
public string ClrNamespace
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_ClrNamespace;
|
||||
}
|
||||
set
|
||||
{
|
||||
m_ClrNamespace = value;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user