e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
69 lines
2.0 KiB
C#
69 lines
2.0 KiB
C#
//-----------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Security
|
|
{
|
|
using System.Net;
|
|
using System.Security.Principal;
|
|
using System.ServiceModel;
|
|
|
|
public sealed class HttpDigestClientCredential
|
|
{
|
|
TokenImpersonationLevel allowedImpersonationLevel = WindowsClientCredential.DefaultImpersonationLevel;
|
|
NetworkCredential digestCredentials;
|
|
bool isReadOnly;
|
|
|
|
internal HttpDigestClientCredential()
|
|
{
|
|
this.digestCredentials = new NetworkCredential();
|
|
}
|
|
|
|
internal HttpDigestClientCredential(HttpDigestClientCredential other)
|
|
{
|
|
this.allowedImpersonationLevel = other.allowedImpersonationLevel;
|
|
this.digestCredentials = SecurityUtils.GetNetworkCredentialsCopy(other.digestCredentials);
|
|
this.isReadOnly = other.isReadOnly;
|
|
}
|
|
|
|
public TokenImpersonationLevel AllowedImpersonationLevel
|
|
{
|
|
get
|
|
{
|
|
return this.allowedImpersonationLevel;
|
|
}
|
|
set
|
|
{
|
|
ThrowIfImmutable();
|
|
this.allowedImpersonationLevel = value;
|
|
}
|
|
}
|
|
|
|
public NetworkCredential ClientCredential
|
|
{
|
|
get
|
|
{
|
|
return this.digestCredentials;
|
|
}
|
|
set
|
|
{
|
|
ThrowIfImmutable();
|
|
this.digestCredentials = value;
|
|
}
|
|
}
|
|
|
|
internal void MakeReadOnly()
|
|
{
|
|
this.isReadOnly = true;
|
|
}
|
|
|
|
void ThrowIfImmutable()
|
|
{
|
|
if (this.isReadOnly)
|
|
{
|
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.ObjectIsReadOnly)));
|
|
}
|
|
}
|
|
}
|
|
}
|