e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
40 lines
1.5 KiB
C#
40 lines
1.5 KiB
C#
//------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Channels
|
|
{
|
|
using System.Net;
|
|
using System.Runtime;
|
|
|
|
class AuthenticationSchemesBindingParameter
|
|
{
|
|
AuthenticationSchemes authenticationSchemes = AuthenticationSchemes.None;
|
|
|
|
public AuthenticationSchemesBindingParameter(AuthenticationSchemes authenticationSchemes)
|
|
{
|
|
Fx.Assert(authenticationSchemes != AuthenticationSchemes.None, "AuthenticationSchemesBindingParameter should not be added for AuthenticationSchemes.None.");
|
|
|
|
this.authenticationSchemes = authenticationSchemes;
|
|
}
|
|
|
|
public AuthenticationSchemes AuthenticationSchemes
|
|
{
|
|
get { return this.authenticationSchemes; }
|
|
}
|
|
|
|
public static bool TryExtract(BindingParameterCollection collection, out AuthenticationSchemes authenticationSchemes)
|
|
{
|
|
Fx.Assert(collection != null, "collection != null");
|
|
authenticationSchemes = AuthenticationSchemes.None;
|
|
AuthenticationSchemesBindingParameter instance = collection.Find<AuthenticationSchemesBindingParameter>();
|
|
if (instance != null)
|
|
{
|
|
authenticationSchemes = instance.AuthenticationSchemes;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
}
|