C# Class FlickrNet.UnknownResponse

Contains the raw response from Flickr when an unknown method has been called. Used by Flickr.TestGeneric.
Inheritance: IFlickrParsable
Afficher le fichier Open project: liquidboy/X Class Usage Examples

Méthodes publiques

Méthode Description
GetAttributeValue ( string element, string attribute ) : string

Gets an attribute value from the given response.

GetElementArray ( string elementName ) : string[]

Gets an array of text values of an element from the given response.

GetElementValue ( string element ) : string

Gets a text value of an element from the given response.

GetXDocument ( ) : XDocument
IFlickrParsable ( System reader ) : void

Method Details

GetAttributeValue() public méthode

Gets an attribute value from the given response.
public GetAttributeValue ( string element, string attribute ) : string
element string The element name to find.
attribute string The attribute of the element to return.
Résultat string

GetElementArray() public méthode

Gets an array of text values of an element from the given response.
public GetElementArray ( string elementName ) : string[]
elementName string The element name to find.
Résultat string[]

GetElementValue() public méthode

Gets a text value of an element from the given response.
public GetElementValue ( string element ) : string
element string The element name to find.
Résultat string

GetXDocument() public méthode

public GetXDocument ( ) : XDocument
Résultat XDocument

IFlickrParsable() public méthode

public IFlickrParsable ( System reader ) : void
reader System
Résultat void