2 instantiations of EndpointReference
System.IdentityModel (2)
System\IdentityModel\Protocols\WSTrust\EndpointReference.cs (1)
102EndpointReference er = new EndpointReference(reader.ReadElementContentAsString());
System\IdentityModel\SecurityTokenService.cs (1)
559rstr.AppliesTo = new EndpointReference(tokenDescriptor.AppliesToAddress);
67 references to EndpointReference
System.IdentityModel (67)
System\IdentityModel\Metadata\ApplicationServiceDescriptor.cs (6)
16Collection<EndpointReference> endpoints = new Collection<EndpointReference>(); 17Collection<EndpointReference> passiveRequestorEndpoints = new Collection<EndpointReference>(); 29public ICollection<EndpointReference> Endpoints 37public ICollection<EndpointReference> PassiveRequestorEndpoints
System\IdentityModel\Metadata\MetadataSerializer.cs (14)
271EndpointReference address = EndpointReference.ReadFrom(reader); 282EndpointReference address = EndpointReference.ReadFrom(reader); 1515EndpointReference address = EndpointReference.ReadFrom(reader); 1526EndpointReference address = EndpointReference.ReadFrom(reader); 1772roleDescriptor.TargetScopes.Add(EndpointReference.ReadFrom(reader)); 1924foreach (EndpointReference epr in appService.Endpoints) 1932foreach (EndpointReference epr in appService.PassiveRequestorEndpoints) 2887foreach (EndpointReference epr in securityTokenServiceDescriptor.SecurityTokenServiceEndpoints) 2894foreach (EndpointReference epr in securityTokenServiceDescriptor.PassiveRequestorEndpoints) 3146foreach (EndpointReference address in wsDescriptor.TargetScopes)
System\IdentityModel\Metadata\SecurityTokenServiceDescriptor.cs (8)
14Collection<EndpointReference> securityTokenServiceEndpoints = new Collection<EndpointReference>(); 15Collection<EndpointReference> passiveRequestorEndpoints = new Collection<EndpointReference>(); 25/// Gets the collection of <see cref="EndpointReference"/> representing the endpoints of the security token service. 27public Collection<EndpointReference> SecurityTokenServiceEndpoints 33/// Gets the collection of <see cref="EndpointReference"/> representing the passive requestor endpoints. 35public Collection<EndpointReference> PassiveRequestorEndpoints
System\IdentityModel\Metadata\WebServiceDescriptor.cs (4)
20Collection<EndpointReference> _targetScopes = new Collection<EndpointReference>(); 65/// Gets a collection of <see cref="EndpointReference"/> representing the target scopes. 67public ICollection<EndpointReference> TargetScopes
System\IdentityModel\Protocols\WSTrust\EndpointReference.cs (7)
72/// Reads an <see cref="EndpointReference"/> from xml reader. 75/// <returns>An <see cref="EndpointReference"/> instance.</returns> 76public static EndpointReference ReadFrom(XmlReader reader) 82/// Reads an <see cref="EndpointReference"/> from xml dictionary reader. The addressing version is defaulted to 86/// <returns>An <see cref="EndpointReference"/> instance.</returns> 87public static EndpointReference ReadFrom(XmlDictionaryReader reader) 102EndpointReference er = new EndpointReference(reader.ReadElementContentAsString());
System\IdentityModel\Protocols\WSTrust\Participants.cs (5)
18EndpointReference _primary; 19List<EndpointReference> _participant = new List<EndpointReference>(); 24public EndpointReference Primary 40public List<EndpointReference> Participant
System\IdentityModel\Protocols\WSTrust\RequestSecurityToken.cs (2)
26EndpointReference _onBehalfOfIssuer; 221public EndpointReference Issuer
System\IdentityModel\Protocols\WSTrust\WSTrustMessage.cs (2)
15private EndpointReference appliesTo; 72public EndpointReference AppliesTo
System\IdentityModel\Protocols\WSTrust\WSTrustSerializationHelper.cs (19)
552EndpointReference primary = null; 553List<EndpointReference> participants = new List<EndpointReference>(); 565primary = EndpointReference.ReadFrom(XmlDictionaryReader.CreateDictionaryReader(reader)); 572participants.Add(EndpointReference.ReadFrom(XmlDictionaryReader.CreateDictionaryReader(reader))); 913EndpointReference appliesTo = elementValue as EndpointReference; 974WriteOnBehalfOfIssuer(writer, elementValue as EndpointReference, trustConstants); 1308foreach (EndpointReference participant in participants.Participant) 1896EndpointReference appliesTo = elementValue as EndpointReference; 2592public static EndpointReference ReadOnBehalfOfIssuer(XmlReader reader, WSTrustConstantsAdapter trustConstants) 2610EndpointReference issuer = null; 2614issuer = EndpointReference.ReadFrom(XmlDictionaryReader.CreateDictionaryReader(reader)); 2626public static void WriteOnBehalfOfIssuer(XmlWriter writer, EndpointReference issuer, WSTrustConstantsAdapter trustConstants) 2648public static EndpointReference ReadAppliesTo(XmlReader reader, WSTrustConstantsAdapter trustConstants) 2660EndpointReference appliesTo = null; 2664appliesTo = EndpointReference.ReadFrom(XmlDictionaryReader.CreateDictionaryReader(reader)); 2676public static void WriteAppliesTo(XmlWriter writer, EndpointReference appliesTo, WSTrustConstantsAdapter trustConstants)