MobileServiceTableOperationError Constructor

Definition

Initializes an instance of MobileServiceTableOperationError

public MobileServiceTableOperationError (string id, long operationVersion, Microsoft.WindowsAzure.MobileServices.Sync.MobileServiceTableOperationKind operationKind, System.Net.HttpStatusCode? status, string tableName, Newtonsoft.Json.Linq.JObject item, string rawResult, Newtonsoft.Json.Linq.JObject result);
new Microsoft.WindowsAzure.MobileServices.Sync.MobileServiceTableOperationError : string * int64 * Microsoft.WindowsAzure.MobileServices.Sync.MobileServiceTableOperationKind * Nullable<System.Net.HttpStatusCode> * string * Newtonsoft.Json.Linq.JObject * string * Newtonsoft.Json.Linq.JObject -> Microsoft.WindowsAzure.MobileServices.Sync.MobileServiceTableOperationError
Public Sub New (id As String, operationVersion As Long, operationKind As MobileServiceTableOperationKind, status As Nullable(Of HttpStatusCode), tableName As String, item As JObject, rawResult As String, result As JObject)

Parameters

id
String

The id of error that is same as operation id.

operationVersion
Int64

The version of the operation.

operationKind
MobileServiceTableOperationKind

The kind of table operation.

status
Nullable<HttpStatusCode>

The HTTP status code returned by server.

tableName
String

The name of the remote table.

item
Newtonsoft.Json.Linq.JObject

The item associated with the operation.

rawResult
String

Raw response of the table operation.

result
Newtonsoft.Json.Linq.JObject

Response of the table operation.

Applies to