e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
41 lines
1.6 KiB
C#
41 lines
1.6 KiB
C#
//------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Security
|
|
{
|
|
using System.IdentityModel;
|
|
using System.IdentityModel.Tokens;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
[TypeForwardedFrom("System.ServiceModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
|
|
class RelAssertionDirectKeyIdentifierClause : SecurityKeyIdentifierClause
|
|
{
|
|
string assertionId;
|
|
|
|
public RelAssertionDirectKeyIdentifierClause(string assertionId, byte[] derivationNonce, int derivationLength)
|
|
: base(null, derivationNonce, derivationLength)
|
|
{
|
|
if (string.IsNullOrEmpty(assertionId))
|
|
{
|
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(SR.AssertionIdCannotBeNullOrEmpty));
|
|
}
|
|
this.assertionId = assertionId;
|
|
}
|
|
|
|
public string AssertionId
|
|
{
|
|
get { return this.assertionId; }
|
|
}
|
|
|
|
public override bool Matches(SecurityKeyIdentifierClause keyIdentifierClause)
|
|
{
|
|
RelAssertionDirectKeyIdentifierClause that = keyIdentifierClause as RelAssertionDirectKeyIdentifierClause;
|
|
|
|
// 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.AssertionId == this.AssertionId));
|
|
}
|
|
}
|
|
}
|