Reworking Credential so that it can be extended by a third party for adapting to other means of acquiring credentials.

This commit is contained in:
antiduh
2014-06-30 15:23:12 +00:00
parent 9d0403ead6
commit 372460a78f

View File

@@ -199,6 +199,15 @@ namespace NSspi.Credentials
return this.expiry;
}
protected set
{
if( this.disposed )
{
throw new ObjectDisposedException( "Credential" );
}
this.expiry = value;
}
}
public SafeCredentialHandle Handle