Modified a few for Example2

This commit is contained in:
sta 2014-11-18 13:26:10 +09:00
parent 1bcb80ca8c
commit 0f54146e65

View File

@ -37,9 +37,11 @@ namespace Example2
wssv.AuthenticationSchemes = AuthenticationSchemes.Basic;
wssv.Realm = "WebSocket Test";
wssv.UserCredentialsFinder = id => {
var expected = "nobita";
return id.Name == expected
? new NetworkCredential (expected, "password", "gunfighter")
var name = id.Name;
// Return user name, password, and roles.
return name == "nobita"
? new NetworkCredential (name, "password", "gunfighter")
: null; // If the user credentials aren't found.
};
*/