Comments.

This commit is contained in:
Kevin Thompson
2017-09-24 02:02:10 -04:00
parent f2d4541bab
commit c07abdaa62
2 changed files with 5 additions and 3 deletions

View File

@@ -3,12 +3,13 @@
namespace NSspi.Credentials
{
/// <summary>
/// Represents the credentials of the user running the current process, for use as an SSPI client.
/// Represents a handle to the credentials of the user running the current process, to be used to
/// authenticate as a client.
/// </summary>
public class ClientCurrentCredential : CurrentCredential
{
/// <summary>
/// Initializes a new instance of the ClientCredential class.
/// Initializes a new instance of the ClientCurrentCredential class.
/// </summary>
/// <param name="package">The security package to acquire the credential handle from.</param>
public ClientCurrentCredential( string package )

View File

@@ -3,7 +3,8 @@
namespace NSspi.Credentials
{
/// <summary>
/// Represents the credentials of the user running the current process, for use as an SSPI server.
/// Represents a handle to the credentials of the user running the current process, to be used to
/// authenticate as a server.
/// </summary>
public class ServerCurrentCredential : CurrentCredential
{