Microsoft.WindowsAzure.MobileServices.MobileServiceInvalidOperationException.MobileServiceInvalidOperationException C# (CSharp) Method

MobileServiceInvalidOperationException() public method

Initializes a new instance of the MobileServiceInvalidOperationException class.
public MobileServiceInvalidOperationException ( string message, Exception innerException, HttpRequestMessage request, HttpResponseMessage response ) : System
message string /// The exception message. ///
innerException System.Exception /// The inner exception of this exception ///
request HttpRequestMessage /// The originating service request. ///
response HttpResponseMessage /// The returned service response. ///
return System
        public MobileServiceInvalidOperationException(string message, Exception innerException, HttpRequestMessage request, HttpResponseMessage response)
            : base(message, innerException)
        {
            this.Request = request;
            this.Response = response;
        }

Same methods

MobileServiceInvalidOperationException::MobileServiceInvalidOperationException ( string message, HttpRequestMessage request, HttpResponseMessage response ) : System
MobileServiceInvalidOperationException::MobileServiceInvalidOperationException ( string message, HttpRequestMessage request, HttpResponseMessage response, JObject value ) : System
MobileServiceInvalidOperationException