1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
namespace System.ServiceModel.Security
{
using System.Globalization;
using System.IdentityModel.Tokens;
using System.Runtime.CompilerServices;
using System.Xml;
using DiagnosticUtility = System.IdentityModel.DiagnosticUtility;
[TypeForwardedFrom( "System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" )]
public class SecurityContextKeyIdentifierClause : SecurityKeyIdentifierClause
{
readonly UniqueId contextId;
readonly UniqueId generation;
public SecurityContextKeyIdentifierClause(UniqueId contextId)
: this(contextId, null)
{
}
public SecurityContextKeyIdentifierClause(UniqueId contextId, UniqueId generation)
: this(contextId, generation, null, 0)
{
}
public SecurityContextKeyIdentifierClause(UniqueId contextId, UniqueId generation, byte[] derivationNonce, int derivationLength)
: base(null, derivationNonce, derivationLength)
{
if (contextId == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("contextId");
}
this.contextId = contextId;
this.generation = generation;
}
public UniqueId ContextId
{
get { return this.contextId; }
}
public UniqueId Generation
{
get { return this.generation; }
}
public override bool Matches(SecurityKeyIdentifierClause keyIdentifierClause)
{
SecurityContextKeyIdentifierClause that = keyIdentifierClause as SecurityContextKeyIdentifierClause;
// PreSharp Bug: Parameter 'that' to this public method must be validated: A null-dereference can occur here.
#pragma warning suppress 56506
return ReferenceEquals(this, that) || (that != null && that.Matches(this.contextId, this.generation));
}
public bool Matches(UniqueId contextId, UniqueId generation)
{
return contextId == this.contextId && generation == this.generation;
}
public override string ToString()
{
return string.Format(CultureInfo.InvariantCulture, "SecurityContextKeyIdentifierClause(ContextId = '{0}', Generation = '{1}')",
this.ContextId, this.Generation);
}
}
}
|