Get a list of the most recent service errors.

Namespace: Buddy
Assembly: Buddy (in Buddy.dll) Version: 1.0.2.7 (1.0.2.7)

Syntax

C#
public IAsyncResult GetServiceErrorsAsync(
	Action<List<BuddyServiceError>, BuddyCallbackParams> callback,
	int recordLimit = 100,
	Object state = null
)
Visual Basic
Public Function GetServiceErrorsAsync ( _
	callback As Action(Of List(Of BuddyServiceError), BuddyCallbackParams), _
	Optional recordLimit As Integer = 100, _
	Optional state As Object = Nothing _
) As IAsyncResult
Visual C++
public:
IAsyncResult^ GetServiceErrorsAsync(
	Action<List<BuddyServiceError^>^, BuddyCallbackParams^>^ callback, 
	int recordLimit = 100, 
	Object^ state = nullptr
)
JavaScript
function GetServiceErrorsAsync(callback, recordLimit, state);

Parameters

callback
Type: System..::..Action<(Of <(<'List<(Of <(<'BuddyServiceError>)>)>, BuddyCallbackParams>)>)>
The async callback to call on success or error. The first parameter is a list of errors that the service recorded for this app.
recordLimit (Optional)
Type: System..::..Int32
Optionally return only a limited number of records.
state (Optional)
Type: System..::..Object
An optional user defined object that will be passed to the callback.

Return Value

An IAsyncResult handle that can be used to monitor progress on this call.

See Also