2 writes to transportToken
System.ServiceModel (2)
System\ServiceModel\Security\SecurityMessageProperty.cs (2)
115
this.
transportToken
= value;
203
result.
transportToken
= this.transportToken;
8 references to transportToken
System.ServiceModel (8)
System\ServiceModel\Security\SecurityMessageProperty.cs (8)
110
return this.
transportToken
;
203
result.transportToken = this.
transportToken
;
252
if (this.
transportToken
!= null && this.initiatorToken == null && this.protectionToken == null)
254
if (includeTransportToken && this.
transportToken
.SecurityTokenPolicies != null)
256
return this.
transportToken
.SecurityTokenPolicies;
263
else if (this.
transportToken
== null && this.initiatorToken != null && this.protectionToken == null)
267
else if (this.
transportToken
== null && this.initiatorToken == null && this.protectionToken != null)
276
AddAuthorizationPolicies(this.
transportToken
, policies);