Xamarin Public Jenkins (auto-signing) e79aa3c0ed Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
2016-08-03 10:59:49 +00:00

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
}
}