1 write to key
System.ServiceModel (1)
System\ServiceModel\Security\Tokens\SecurityContextSecurityToken.cs (1)
271this.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) 87this.Initialize(from.contextId, from.key, from.tokenEffectiveTime, from.tokenExpirationTime, authorizationPolicies, from.isCookieMode, from.keyGeneration, from.keyEffectiveTime, from.keyExpirationTime); 221this.keyString = Convert.ToBase64String(this.key); 228byte[] retval = new byte[this.key.Length]; 229Buffer.BlockCopy(this.key, 0, retval, 0, this.key.Length); 272Buffer.BlockCopy(key, 0, this.key, 0, key.Length); 277temp.Add(new InMemorySymmetricSecurityKey(this.key, false));