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 SourceLoad(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 |
Remarks
This method expects the supplied source
to be positioned on the XML element that represents a IXmlRpcValue.
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException | The |
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.
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 |