C# Class Google.GData.Client.GDataRequestException

Inheritance: LoggedException
Show file Open project: moljac/MonoMobile.Google.GData Class Usage Examples

Protected Properties

Property Type Description
responseText string
webResponse WebResponse

Public Methods

Method Description
GDataRequestException ( ) : System

default constructor so that FxCop does not complain

GDataRequestException ( string msg ) : System

public GDataRequestException(WebException e)

GDataRequestException ( string msg, Exception exception ) : System

public GDataRequestException(WebException e)

GDataRequestException ( string msg, WebException exception ) : System

public GDataRequestException(WebException e)

GDataRequestException ( string msg, WebResponse response ) : System

public GDataRequestException(WebException e)

GetObjectData ( SerializationInfo info, StreamingContext context ) : void

overridden to make FxCop happy and future use

Protected Methods

Method Description
GDataRequestException ( SerializationInfo info, StreamingContext context ) : System

here to please FxCop and maybe for future use

ReadResponseString ( ) : string

this uses the webresponse object to get at the stream send back from the server.

Method Details

GDataRequestException() public method

default constructor so that FxCop does not complain
public GDataRequestException ( ) : System
return System

GDataRequestException() protected method

here to please FxCop and maybe for future use
protected GDataRequestException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return System

GDataRequestException() public method

public GDataRequestException(WebException e)
public GDataRequestException ( string msg ) : System
msg string the exception message as a string
return System

GDataRequestException() public method

public GDataRequestException(WebException e)
public GDataRequestException ( string msg, Exception exception ) : System
msg string the exception message as a string
exception System.Exception the inner exception
return System

GDataRequestException() public method

public GDataRequestException(WebException e)
public GDataRequestException ( string msg, WebException exception ) : System
msg string the exception message as a string
exception System.Net.WebException the inner exception
return System

GDataRequestException() public method

public GDataRequestException(WebException e)
public GDataRequestException ( string msg, WebResponse response ) : System
msg string the exception message as a string
response WebResponse the webresponse object that caused the exception
return System

GetObjectData() public method

overridden to make FxCop happy and future use
public GetObjectData ( SerializationInfo info, StreamingContext context ) : void
info SerializationInfo
context StreamingContext
return void

ReadResponseString() protected method

this uses the webresponse object to get at the stream send back from the server.
protected ReadResponseString ( ) : string
return string

Property Details

responseText protected property

cache to hold the responseText in an error scenario
protected string responseText
return string

webResponse protected property

holds the webresponse object
protected WebResponse webResponse
return WebResponse