From c07abdaa620fe6b54648d7718f8cc2b705202852 Mon Sep 17 00:00:00 2001 From: Kevin Thompson Date: Sun, 24 Sep 2017 02:02:10 -0400 Subject: [PATCH] Comments. --- NSspi/Credentials/ClientCurrentCredential.cs | 5 +++-- NSspi/Credentials/ServerCurrentCredential.cs | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/NSspi/Credentials/ClientCurrentCredential.cs b/NSspi/Credentials/ClientCurrentCredential.cs index d96acf4..66bd144 100644 --- a/NSspi/Credentials/ClientCurrentCredential.cs +++ b/NSspi/Credentials/ClientCurrentCredential.cs @@ -3,12 +3,13 @@ namespace NSspi.Credentials { /// - /// 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. /// public class ClientCurrentCredential : CurrentCredential { /// - /// Initializes a new instance of the ClientCredential class. + /// Initializes a new instance of the ClientCurrentCredential class. /// /// The security package to acquire the credential handle from. public ClientCurrentCredential( string package ) diff --git a/NSspi/Credentials/ServerCurrentCredential.cs b/NSspi/Credentials/ServerCurrentCredential.cs index c65d65e..f024fd0 100644 --- a/NSspi/Credentials/ServerCurrentCredential.cs +++ b/NSspi/Credentials/ServerCurrentCredential.cs @@ -3,7 +3,8 @@ namespace NSspi.Credentials { /// - /// 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. /// public class ServerCurrentCredential : CurrentCredential {