C# Class Google.GData.Client.GDataRequestException

Inheritance: LoggedException
Afficher le fichier Open project: moljac/MonoMobile.Google.GData Class Usage Examples

Protected Properties

Свойство Type Description
responseText string
webResponse WebResponse

Méthodes publiques

Méthode 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

Méthodes protégées

Méthode 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 méthode

default constructor so that FxCop does not complain
public GDataRequestException ( ) : System
Résultat System

GDataRequestException() protected méthode

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
Résultat System

GDataRequestException() public méthode

public GDataRequestException(WebException e)
public GDataRequestException ( string msg ) : System
msg string the exception message as a string
Résultat System

GDataRequestException() public méthode

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
Résultat System

GDataRequestException() public méthode

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
Résultat System

GDataRequestException() public méthode

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
Résultat System

GetObjectData() public méthode

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

ReadResponseString() protected méthode

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

Property Details

responseText protected_oe property

cache to hold the responseText in an error scenario
protected string responseText
Résultat string

webResponse protected_oe property

holds the webresponse object
protected WebResponse webResponse
Résultat WebResponse