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