Represents a user that has been authenticated with the Buddy Platform. Use this object to interact with the service on behalf of the user.
Examples
CopyC#
BuddyClient client = new BuddyClient("APPNAME", "APPPASS");
AuthenticatedUser user;
client.CreateUserAsync((u, state) => {
user = u;
}, "username", "password");
AuthenticatedUser user2;
client.LoginAsync((u, state) => {
user2 = u;
}, "username2", "password2"); Namespace: BuddyAssembly: Buddy (in Buddy.dll) Version: 1.0.2.7 (1.0.2.7)
Syntax
| C# |
|---|
public class AuthenticatedUser : User |
| Visual Basic |
|---|
Public Class AuthenticatedUser _
Inherits User |
| Visual C++ |
|---|
public ref class AuthenticatedUser : public User |
| JavaScript |
|---|
Buddy.AuthenticatedUser = function();
Type.createClass(
'Buddy.AuthenticatedUser',
Buddy.User); |
Inheritance Hierarchy
See Also