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 {