25 references to IncomingSupportingTokens
System.ServiceModel (25)
System\ServiceModel\OperationContext.cs (1)
331properties.Security.IncomingSupportingTokens);
System\ServiceModel\Security\IdentityModelServiceAuthorizationManager.cs (1)
789foreach (SecurityTokenSpecification tokenSpecification in _securityMessageProperty.IncomingSupportingTokens)
System\ServiceModel\Security\SecurityMessageProperty.cs (1)
192result.IncomingSupportingTokens.Add(this.incomingSupportingTokens[i]);
System\ServiceModel\Security\SecurityProtocol.cs (1)
511security.IncomingSupportingTokens.Add(new SupportingTokenSpecification(tokens[i], tokenPoliciesMapping[tokens[i]], attachmentMode));
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (13)
746for (int i = 0; i < supportingTokenProperty.IncomingSupportingTokens.Count; ++i) 748if (supportingTokenProperty.IncomingSupportingTokens[i].SecurityTokenAttachmentMode != SecurityTokenAttachmentMode.Endorsing 749&& supportingTokenProperty.IncomingSupportingTokens[i].SecurityTokenAttachmentMode != SecurityTokenAttachmentMode.SignedEndorsing) 753SecurityContextSecurityToken sct = supportingTokenProperty.IncomingSupportingTokens[i].SecurityToken as SecurityContextSecurityToken; 756return supportingTokenProperty.IncomingSupportingTokens[i]; 853for (int i = 0; i < security.IncomingSupportingTokens.Count; ++i) 855if (security.IncomingSupportingTokens[i].SecurityTokenAttachmentMode == SecurityTokenAttachmentMode.Endorsing 856|| security.IncomingSupportingTokens[i].SecurityTokenAttachmentMode == SecurityTokenAttachmentMode.SignedEncrypted 857|| security.IncomingSupportingTokens[i].SecurityTokenAttachmentMode == SecurityTokenAttachmentMode.SignedEndorsing) 859AddTokenToRemoveIfRequired(security.IncomingSupportingTokens[i].SecurityToken, securityContextTokensToRemove); 979for (int i = 0; i < securityProperty.IncomingSupportingTokens.Count; ++i) 981if (securityProperty.IncomingSupportingTokens[i].SecurityTokenAttachmentMode == SecurityTokenAttachmentMode.Endorsing) 983sct = securityProperty.IncomingSupportingTokens[i].SecurityToken as SecurityContextSecurityToken;
System\ServiceModel\Security\SecuritySessionServerSettings.cs (3)
1373for (int i = 0; i < securityProperty.IncomingSupportingTokens.Count; ++i) 1375if (securityProperty.IncomingSupportingTokens[i].SecurityTokenAttachmentMode == SecurityTokenAttachmentMode.Endorsing) 1377sct = (securityProperty.IncomingSupportingTokens[i].SecurityToken as SecurityContextSecurityToken);
System\ServiceModel\Security\SecurityUtils.cs (3)
1429for (int i = 0; i < messageProperty.IncomingSupportingTokens.Count; ++i) 1431SupportingTokenSpecification supportingTokenSpecification = messageProperty.IncomingSupportingTokens[i]; 1435messageProperty.IncomingSupportingTokens[i] = new SupportingTokenSpecification(new UserNameSecurityToken(token.UserName, null, token.Id), supportingTokenSpecification.SecurityTokenPolicies, supportingTokenSpecification.SecurityTokenAttachmentMode, supportingTokenSpecification.SecurityTokenParameters);
System\ServiceModel\Security\WSTrustServiceContract.cs (1)
108foreach (SupportingTokenSpecification tokenSpec in msgProperty.IncomingSupportingTokens)
System\ServiceModel\ServiceAuthenticationManager.cs (1)
126foreach (SupportingTokenSpecification tokenSpecification in message.Properties.Security.IncomingSupportingTokens)