1 write to _tokenDescriptor
System.IdentityModel (1)
System\IdentityModel\SecurityTokenService.cs (1)
1027
_tokenDescriptor
= value;
28 references to _tokenDescriptor
System.IdentityModel (28)
System\IdentityModel\SecurityTokenService.cs (28)
735
_tokenDescriptor
.TokenIssuerName = GetValidIssuerName();
738
_tokenDescriptor
.Lifetime = GetTokenLifetime(request.Lifetime);
741
_tokenDescriptor
.Proof = GetProofToken(request, scope);
744
_tokenDescriptor
.Subject = GetOutputClaimsIdentity(principal, request, scope);
751
_tokenDescriptor
.TokenType = request.TokenType;
760
_tokenDescriptor
.TokenType = identifiers[0];
762
_tokenDescriptor
.Token = securityTokenHandler.CreateToken(
_tokenDescriptor
);
763
_tokenDescriptor
.AttachedReference = securityTokenHandler.CreateSecurityTokenReference(
_tokenDescriptor
.Token, true);
764
_tokenDescriptor
.UnattachedReference = securityTokenHandler.CreateSecurityTokenReference(
_tokenDescriptor
.Token, false);
767
RSTR rstr = GetResponse(request,
_tokenDescriptor
);
860
_tokenDescriptor
.TokenIssuerName = GetValidIssuerName();
865
_tokenDescriptor
.Lifetime = GetTokenLifetime(request == null ? null : request.Lifetime);
870
_tokenDescriptor
.Proof = GetProofToken(request, this.Scope);
934
if (
_tokenDescriptor
== null)
939
_tokenDescriptor
.Subject = EndGetOutputClaimsIdentity(result);
947
_tokenDescriptor
.TokenType = request.TokenType;
956
_tokenDescriptor
.TokenType = identifiers[0];
958
_tokenDescriptor
.Token = securityTokenHandler.CreateToken(
_tokenDescriptor
);
959
_tokenDescriptor
.AttachedReference = securityTokenHandler.CreateSecurityTokenReference(
_tokenDescriptor
.Token, true);
960
_tokenDescriptor
.UnattachedReference = securityTokenHandler.CreateSecurityTokenReference(
_tokenDescriptor
.Token, false);
963
response = GetResponse(request,
_tokenDescriptor
);
1020
get { return
_tokenDescriptor
; }