Modified a few for Example2
This commit is contained in:
parent
1bcb80ca8c
commit
0f54146e65
@ -37,9 +37,11 @@ namespace Example2
|
|||||||
wssv.AuthenticationSchemes = AuthenticationSchemes.Basic;
|
wssv.AuthenticationSchemes = AuthenticationSchemes.Basic;
|
||||||
wssv.Realm = "WebSocket Test";
|
wssv.Realm = "WebSocket Test";
|
||||||
wssv.UserCredentialsFinder = id => {
|
wssv.UserCredentialsFinder = id => {
|
||||||
var expected = "nobita";
|
var name = id.Name;
|
||||||
return id.Name == expected
|
|
||||||
? new NetworkCredential (expected, "password", "gunfighter")
|
// Return user name, password, and roles.
|
||||||
|
return name == "nobita"
|
||||||
|
? new NetworkCredential (name, "password", "gunfighter")
|
||||||
: null; // If the user credentials aren't found.
|
: null; // If the user credentials aren't found.
|
||||||
};
|
};
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user