C# Class Rolcore.Net.WebMethods.WebMethodsHtmlResponseObject

Represents a structured WebMethods response.
Show file Open project: Rollins/Rolcore Class Usage Examples

Public Methods

Method Description
Contains ( string objectName ) : bool

Determines if the given object name exists within the hierarchy.

WebMethodsHtmlResponseObject ( string htmlResponse ) : System

Construcor. Creates the psuedo object hierarchy based on a response from WebMethods.

this ( string objectName ) : WebMethodsHtmlResponseObject

Accesses child WebMethodsHtmlResponseObject instances of the current instance.

Protected Methods

Method Description
FindObjectNameNode ( string objectName, XmlNode start ) : XmlNode

Method Details

Contains() public method

Determines if the given object name exists within the hierarchy.
public Contains ( string objectName ) : bool
objectName string The name (using instance.SubObjectName syntax) of the object to test for.
return bool

FindObjectNameNode() protected static method

protected static FindObjectNameNode ( string objectName, XmlNode start ) : XmlNode
objectName string
start System.Xml.XmlNode
return System.Xml.XmlNode

WebMethodsHtmlResponseObject() public method

Construcor. Creates the psuedo object hierarchy based on a response from WebMethods.
public WebMethodsHtmlResponseObject ( string htmlResponse ) : System
htmlResponse string The response from WebMethods to interpret.
return System

this() public method

Accesses child WebMethodsHtmlResponseObject instances of the current instance.
public this ( string objectName ) : WebMethodsHtmlResponseObject
objectName string The child instance (using instance.SubObjectName syntax) to access.
return WebMethodsHtmlResponseObject