19 lines
696 B
C#
19 lines
696 B
C#
|
//-----------------------------------------------------------------------
|
||
|
// <copyright file="WSMetadataExchangeConstants.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
//-----------------------------------------------------------------------
|
||
|
|
||
|
namespace System.IdentityModel.Protocols
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The <c>WSMetadataExchangeConstants</c> class contains constants used in the WS-Mex protocol.
|
||
|
/// </summary>
|
||
|
internal static class WSMetadataExchangeConstants
|
||
|
{
|
||
|
#pragma warning disable 1591
|
||
|
public const string Namespace = "http://schemas.xmlsoap.org/ws/2004/09/mex";
|
||
|
#pragma warning restore 1591
|
||
|
}
|
||
|
}
|