e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
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
|
|
}
|
|
}
|