//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------ using System.Collections.ObjectModel; using System.IdentityModel.Protocols.WSTrust; namespace System.IdentityModel.Metadata { /// /// Defines a Service Descriptor for a security token service. /// public class SecurityTokenServiceDescriptor : WebServiceDescriptor { Collection securityTokenServiceEndpoints = new Collection(); Collection passiveRequestorEndpoints = new Collection(); /// /// Empty constructor. /// public SecurityTokenServiceDescriptor() { } /// /// Gets the collection of representing the endpoints of the security token service. /// public Collection SecurityTokenServiceEndpoints { get { return this.securityTokenServiceEndpoints; } } /// /// Gets the collection of representing the passive requestor endpoints. /// public Collection PassiveRequestorEndpoints { get { return this.passiveRequestorEndpoints; } } } }