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

49 lines
1.4 KiB
C#

//-----------------------------------------------------------------------
// <copyright file="Participants.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace System.IdentityModel.Protocols.WSTrust
{
using System.Collections.Generic;
/// <summary>
/// Defines the &lt;wst:Participants> elements. This element is an extension to
/// the &lt;wst:RequestSecurityToken element for passing information about which
/// parties are authorized to participate in the use of the token.
/// </summary>
public class Participants
{
EndpointReference _primary;
List<EndpointReference> _participant = new List<EndpointReference>();
/// <summary>
/// Gets the Primary user of the Issued Token.
/// </summary>
public EndpointReference Primary
{
get
{
return _primary;
}
set
{
_primary = value;
}
}
/// <summary>
/// Gets the list of Participants who are allowed to use
/// the token.
/// </summary>
public List<EndpointReference> Participant
{
get
{
return _participant;
}
}
}
}