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