Imported Upstream version 4.0.0~alpha1

Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
Jo Shields
2015-04-07 09:35:12 +01:00
parent 283343f570
commit 3c1f479b9d
22469 changed files with 2931443 additions and 869343 deletions

View File

@@ -0,0 +1,67 @@
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
using System;
namespace System.IdentityModel.Metadata
{
/// <summary>
/// This class defines a protocol endpoint.
/// </summary>
public class ProtocolEndpoint
{
Uri binding;
Uri location;
Uri responseLocation;
/// <summary>
/// Empty constructor.
/// </summary>
public ProtocolEndpoint()
: this(null, null)
{
}
/// <summary>
/// Constructs an endpoint with the specified <paramref name="binding"/> and <paramref name="location"/>.
/// </summary>
/// <param name="binding">The URI representing the binding for this instance.</param>
/// <param name="location">The URI representing the location for this instance.</param>
public ProtocolEndpoint(Uri binding, Uri location)
{
Binding = binding;
Location = location;
}
/// <summary>
/// Gets or sets the binding. This is a required element.
/// </summary>
public Uri Binding
{
get { return this.binding; }
set { this.binding = value; }
}
/// <summary>
/// Gets or sets the location. This is a required element.
/// </summary>
public Uri Location
{
get { return this.location; }
set { this.location = value; }
}
/// <summary>
/// Gets or sets the response location. This is an optional element.
/// </summary>
public Uri ResponseLocation
{
get { return this.responseLocation; }
set { this.responseLocation = value; }
}
}
}