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,31 @@
|
||||
//-----------------------------------------------------------------------
|
||||
// <copyright file="WSAddressing10Constants.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//-----------------------------------------------------------------------
|
||||
|
||||
namespace System.IdentityModel
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
/// <summary>
|
||||
/// Defines constants used in WS-Addressing 1.0 standard schema.
|
||||
/// </summary>
|
||||
internal static class WSAddressing10Constants
|
||||
{
|
||||
#pragma warning disable 1591
|
||||
public const string Prefix = "wsa";
|
||||
public const string NamespaceUri = "http://www.w3.org/2005/08/addressing";
|
||||
|
||||
public static class Elements
|
||||
{
|
||||
public const string Action = "Action";
|
||||
public const string Address = "Address";
|
||||
public const string ReplyTo = "ReplyTo";
|
||||
public const string EndpointReference = "EndpointReference";
|
||||
}
|
||||
#pragma warning restore 1591
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user