Show / Hide Table of Contents

Interface IXmlRpcValue

Defines generalized properties, methods, indexers and events that a value type or class implements to create a type-specific XML-RPC values.

Namespace: Argotic.Net
Assembly: Argotic.Core.dll
Syntax
public interface IXmlRpcValue

Methods

| Improve this Doc View Source

Load(XPathNavigator)

Loads this IXmlRpcValue using the supplied System.Xml.XPath.XPathNavigator.

Declaration
bool Load(XPathNavigator source)
Parameters
Type Name Description
System.Xml.XPath.XPathNavigator source

The System.Xml.XPath.XPathNavigator to extract information from.

Returns
Type Description
System.Boolean

true if the IXmlRpcValue was initialized using the supplied source, otherwise false.

Remarks

This method expects the supplied source to be positioned on the XML element that represents a IXmlRpcValue.

Exceptions
Type Condition
System.ArgumentNullException

The source is a null reference (Nothing in Visual Basic).

| Improve this Doc View Source

ToString()

Returns a System.String that represents the current IXmlRpcValue.

Declaration
string ToString()
Returns
Type Description
System.String

A System.String that represents the current IXmlRpcValue.

Remarks

This method returns the XML representation for the current instance.

| Improve this Doc View Source

WriteTo(XmlWriter)

Saves the current IXmlRpcValue to the specified System.Xml.XmlWriter.

Declaration
void WriteTo(XmlWriter writer)
Parameters
Type Name Description
System.Xml.XmlWriter writer

The System.Xml.XmlWriter to which you want to save.

Exceptions
Type Condition
System.ArgumentNullException

The writer is a null reference (Nothing in Visual Basic).

See Also

XmlRpcArrayValue
XmlRpcScalarValue
XmlRpcStructureValue
  • Improve this Doc
  • View Source
Back to top Generated by DocFX