You've already forked linux-packaging-mono
Imported Upstream version 5.2.0.175
Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
This commit is contained in:
parent
4bdbaf4a88
commit
966bba02bb
@ -37,16 +37,16 @@ namespace System.IdentityModel.Tokens
|
||||
public class X509WindowsSecurityToken : X509SecurityToken
|
||||
{
|
||||
[MonoTODO]
|
||||
public X509WindowsSecurityToken (X509Certificate2 cert, WindowsIdentity identity)
|
||||
: base (cert)
|
||||
public X509WindowsSecurityToken (X509Certificate2 certificate, WindowsIdentity windowsIdentity)
|
||||
: base (certificate)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public X509WindowsSecurityToken (X509Certificate2 cert, WindowsIdentity identity, string id)
|
||||
: base (cert, id)
|
||||
public X509WindowsSecurityToken (X509Certificate2 certificate, WindowsIdentity windowsIdentity, string id)
|
||||
: base (certificate, id)
|
||||
{
|
||||
this.identity = identity;
|
||||
this.identity = windowsIdentity;
|
||||
}
|
||||
|
||||
WindowsIdentity identity;
|
||||
|
Reference in New Issue
Block a user