1 write to key
System.ServiceModel (1)
System\ServiceModel\Security\Tokens\SecurityContextSecurityToken.cs (1)
271
this.
key
= new byte[key.Length];
8 references to key
System.ServiceModel (8)
System\ServiceModel\Security\Tokens\SecurityContextSecurityToken.cs (8)
56
: this(sourceToken, id, sourceToken.
key
, sourceToken.keyGeneration, sourceToken.keyEffectiveTime, sourceToken.keyExpirationTime, sourceToken.AuthorizationPolicies)
87
this.Initialize(from.contextId, from.
key
, from.tokenEffectiveTime, from.tokenExpirationTime, authorizationPolicies, from.isCookieMode, from.keyGeneration, from.keyEffectiveTime, from.keyExpirationTime);
221
this.keyString = Convert.ToBase64String(this.
key
);
228
byte[] retval = new byte[this.
key
.Length];
229
Buffer.BlockCopy(this.
key
, 0, retval, 0, this.
key
.Length);
272
Buffer.BlockCopy(key, 0, this.
key
, 0, key.Length);
277
temp.Add(new InMemorySymmetricSecurityKey(this.
key
, false));