e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
25 lines
789 B
C#
25 lines
789 B
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="WSPolicyConstants.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//-----------------------------------------------------------------------
|
|
|
|
namespace System.IdentityModel.Protocols.WSTrust
|
|
{
|
|
/// <summary>
|
|
/// Defines WS-Policy constants.
|
|
/// </summary>
|
|
internal static class WSPolicyConstants
|
|
{
|
|
#pragma warning disable 1591
|
|
public const string NamespaceURI = "http://schemas.xmlsoap.org/ws/2004/09/policy";
|
|
public const string Prefix = "wsp";
|
|
|
|
public static class ElementNames
|
|
{
|
|
public const string AppliesTo = "AppliesTo";
|
|
}
|
|
#pragma warning restore 1591
|
|
}
|
|
}
|