Gets a list of emails for all registered users for this app.
Namespace: BuddyAssembly: Buddy (in Buddy.dll) Version: 1.0.2.7 (1.0.2.7)
Syntax
| C# |
|---|
public IAsyncResult GetUserEmailsAsync( Action<List<string>, BuddyCallbackParams> callback, int fromRow, int pageSize = 10, Object state = null ) |
| Visual Basic |
|---|
Public Function GetUserEmailsAsync ( _ callback As Action(Of List(Of String), BuddyCallbackParams), _ fromRow As Integer, _ Optional pageSize As Integer = 10, _ Optional state As Object = Nothing _ ) As IAsyncResult |
| Visual C++ |
|---|
public: IAsyncResult^ GetUserEmailsAsync( Action<List<String^>^, BuddyCallbackParams^>^ callback, int fromRow, int pageSize = 10, Object^ state = nullptr ) |
| JavaScript |
|---|
function GetUserEmailsAsync(callback, fromRow, pageSize, state); |
Parameters
- callback
- Type: System..::..Action<(Of <(<'List<(Of <(<'String>)>)>, BuddyCallbackParams>)>)>
The async callback to call on success or error. The first parameter is the list of emails.
- fromRow
- Type: System..::..Int32
Used for paging, retrieve only records starting fromRow.
- pageSize (Optional)
- Type: System..::..Int32
Used for paginig, specify page size.
- state (Optional)
- Type: System..::..Object
An optional user defined object that will be passed to the callback.