15 references to SecurityTokenAttachmentMode
System.ServiceModel (15)
System\ServiceModel\Security\SecurityMessageProperty.cs (1)
292
SecurityTokenAttachmentMode attachmentMode = this.incomingSupportingTokens[i].
SecurityTokenAttachmentMode
;
System\ServiceModel\Security\SecurityProtocol.cs (3)
683
switch (supportingTokens[i].
SecurityTokenAttachmentMode
)
698
Fx.Assert("Unknown token attachment mode " + supportingTokens[i].
SecurityTokenAttachmentMode
.ToString());
699
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException(SR.GetString(SR.UnknownTokenAttachmentMode, supportingTokens[i].
SecurityTokenAttachmentMode
.ToString())));
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (6)
748
if (supportingTokenProperty.IncomingSupportingTokens[i].
SecurityTokenAttachmentMode
!= SecurityTokenAttachmentMode.Endorsing
749
&& supportingTokenProperty.IncomingSupportingTokens[i].
SecurityTokenAttachmentMode
!= SecurityTokenAttachmentMode.SignedEndorsing)
855
if (security.IncomingSupportingTokens[i].
SecurityTokenAttachmentMode
== SecurityTokenAttachmentMode.Endorsing
856
|| security.IncomingSupportingTokens[i].
SecurityTokenAttachmentMode
== SecurityTokenAttachmentMode.SignedEncrypted
857
|| security.IncomingSupportingTokens[i].
SecurityTokenAttachmentMode
== SecurityTokenAttachmentMode.SignedEndorsing)
981
if (securityProperty.IncomingSupportingTokens[i].
SecurityTokenAttachmentMode
== SecurityTokenAttachmentMode.Endorsing)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
1375
if (securityProperty.IncomingSupportingTokens[i].
SecurityTokenAttachmentMode
== SecurityTokenAttachmentMode.Endorsing)
System\ServiceModel\Security\SecurityUtils.cs (1)
1435
messageProperty.IncomingSupportingTokens[i] = new SupportingTokenSpecification(new UserNameSecurityToken(token.UserName, null, token.Id), supportingTokenSpecification.SecurityTokenPolicies, supportingTokenSpecification.
SecurityTokenAttachmentMode
, supportingTokenSpecification.SecurityTokenParameters);
System\ServiceModel\Security\WSTrustServiceContract.cs (2)
111
(tokenSpec.
SecurityTokenAttachmentMode
== SecurityTokenAttachmentMode.Endorsing ||
112
tokenSpec.
SecurityTokenAttachmentMode
== SecurityTokenAttachmentMode.SignedEndorsing))
System\ServiceModel\ServiceAuthenticationManager.cs (1)
128
if ((tokenSpecification.
SecurityTokenAttachmentMode
== SecurityTokenAttachmentMode.Endorsing) &&