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 namespace NSspi.Credentials
{ {
/// <summary> /// <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> /// </summary>
public class ClientCurrentCredential : CurrentCredential public class ClientCurrentCredential : CurrentCredential
{ {
/// <summary> /// <summary>
/// Initializes a new instance of the ClientCredential class. /// Initializes a new instance of the ClientCurrentCredential class.
/// </summary> /// </summary>
/// <param name="package">The security package to acquire the credential handle from.</param> /// <param name="package">The security package to acquire the credential handle from.</param>
public ClientCurrentCredential( string package ) public ClientCurrentCredential( string package )

View File

@@ -3,7 +3,8 @@
namespace NSspi.Credentials namespace NSspi.Credentials
{ {
/// <summary> /// <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> /// </summary>
public class ServerCurrentCredential : CurrentCredential public class ServerCurrentCredential : CurrentCredential
{ {