Renamed Client/ServerCredential.

The credential implementations should indicate in their name that they are implementations of the 'current' credential (acquired from the login running the process).
This commit is contained in:
Kevin Thompson
2017-09-24 01:59:34 -04:00
parent 0eb8ff49f2
commit f2d4541bab
6 changed files with 14 additions and 14 deletions

View File

@@ -14,7 +14,7 @@ namespace TestClient
public partial class ClientForm : Form
{
private ClientContext context;
private ClientCredential cred;
private ClientCurrentCredential cred;
private CustomConnection connection;
@@ -42,7 +42,7 @@ namespace TestClient
this.FormClosing += Form1_FormClosing;
// --- SSPI ---
this.cred = new ClientCredential( PackageNames.Negotiate );
this.cred = new ClientCurrentCredential( PackageNames.Negotiate );
this.context = new ClientContext(
cred,