Represents a single identity search result. Use the AuthenticatedUser.IdentityValues.CheckForValues() method to search for items. A search item
can belong to any user in the system.
Examples
CopyC#
BuddyClient client = new BuddyClient("APPNAME", "APPPASS");
client.LoginAsync((user, state) => {
List<IdentityItemSearchResult> items = user.IdentityValues.CheckForValuesAsync((r, ex) => { }, "somevalue");
}, "username", "password"); Namespace: BuddyAssembly: Buddy (in Buddy.dll) Version: 1.0.2.7 (1.0.2.7)
Syntax
| Visual Basic |
|---|
Public Class IdentityItemSearchResult _
Inherits IdentityItem |
| Visual C++ |
|---|
public ref class IdentityItemSearchResult : public IdentityItem |
| JavaScript |
|---|
Buddy.IdentityItemSearchResult = function();
Type.createClass(
'Buddy.IdentityItemSearchResult',
Buddy.IdentityItem); |
Inheritance Hierarchy
See Also