Intersoft ClientUI Documentation
XPSParser Class Members
Properties  Methods 


The following tables list the members exposed by XPSParser.

Public Properties
 NameDescription
Public PropertyAttributeCountOverridden.  Gets the number of attributes on the current node.  
Public PropertyBaseURIOverridden.  Gets the base URI of the current node.  
Public PropertyCanReadBinaryContentGets a value indicating whether the System.Xml.XmlReader implements the binary content read methods. (Inherited from System.Xml.XmlReader)
Public PropertyCanReadValueChunkGets a value indicating whether the System.Xml.XmlReader implements the System.Xml.XmlReader.ReadValueChunk(System.Char[],System.Int32,System.Int32) method. (Inherited from System.Xml.XmlReader)
Public PropertyCanResolveEntityGets a value indicating whether this reader can parse and resolve entities. (Inherited from System.Xml.XmlReader)
Public PropertyDepthOverridden.  Gets the depth of the current node in the XML document.  
Public PropertyEOFOverridden.  Gets a value indicating whether the reader is positioned at the end of the stream.  
Public PropertyHasAttributesGets a value indicating whether the current node has any attributes. (Inherited from System.Xml.XmlReader)
Public PropertyHasValueWhen overridden in a derived class, gets a value indicating whether the current node can have a System.Xml.XmlReader.Value. (Inherited from System.Xml.XmlReader)
Public PropertyIsDefaultWhen overridden in a derived class, gets a value indicating whether the current node is an attribute that was generated from the default value defined in the DTD or schema. (Inherited from System.Xml.XmlReader)
Public PropertyIsEmptyElementOverridden. Gets a value indicating whether the current node is an empty element (for example, ).  
Public PropertyItemOverloaded. When overridden in a derived class, gets the value of the attribute with the specified index. (Inherited from System.Xml.XmlReader)
Public PropertyLocalNameOverridden.  Gets the local name of the current node.  
Public PropertyNameWhen overridden in a derived class, gets the qualified name of the current node. (Inherited from System.Xml.XmlReader)
Public PropertyNamespaceURIOverridden.  Gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned.  
Public PropertyNameTableOverridden.  Gets the System.Xml.XmlNameTable associated with this implementation.  
Public PropertyNodeTypeOverridden.  Gets the type of the current node.  
Public PropertyPrefixOverridden.  Gets the namespace prefix associated with the current node.  
Public PropertyReadStateOverridden.  Gets the state of the reader.  
Public PropertySettingsGets the System.Xml.XmlReaderSettings object used to create this System.Xml.XmlReader instance. (Inherited from System.Xml.XmlReader)
Public PropertyValueOverridden.  Gets the text value of the current node.  
Public PropertyValueTypeGets The Common Language Runtime (CLR) type for the current node. (Inherited from System.Xml.XmlReader)
Public PropertyXmlLangWhen overridden in a derived class, gets the current xml:lang scope. (Inherited from System.Xml.XmlReader)
Public PropertyXmlSpaceWhen overridden in a derived class, gets the current xml:space scope. (Inherited from System.Xml.XmlReader)
Top
Public Methods
 NameDescription
Public MethodCloseOverridden.  Changes the System.Xml.XmlReader.ReadState to Closed.  
Public MethodDisposeOverloaded. Releases all resources used by the current instance of the System.Xml.XmlReader class. (Inherited from System.Xml.XmlReader)
Public MethodGetAttributeOverloaded. Overridden.  Gets the value of the attribute with the specified index.  
Public MethodIsStartElementOverloaded. Calls System.Xml.XmlReader.MoveToContent and tests if the current content node is a start tag or empty element tag. (Inherited from System.Xml.XmlReader)
Public MethodLookupNamespaceOverridden.  Resolves a namespace prefix in the current element's scope.  
Public MethodMoveToAttributeOverloaded. Overridden.  Moves to the attribute with the specified index.  
Public MethodMoveToContentChecks whether the current node is a content (non-white space text, CDATA, Element, EndElement, EntityReference, or EndEntity) node. If the node is not a content node, the reader skips ahead to the next content node or end of file. It skips over nodes of the following type: ProcessingInstruction, DocumentType, Comment, Whitespace, or SignificantWhitespace. (Inherited from System.Xml.XmlReader)
Public MethodMoveToElementOverridden.  Moves to the element that contains the current attribute node.  
Public MethodMoveToFirstAttributeOverridden.  Moves to the first attribute.  
Public MethodMoveToNextAttributeOverridden.  Moves to the next attribute.  
Public MethodReadOverridden.  Reads the next node from the stream.  
Public MethodReadAttributeValueOverridden.  Parses the attribute value into one or more Text, EntityReference, or EndEntity nodes.  
Public MethodReadContentAsReads the content as an object of the type specified. (Inherited from System.Xml.XmlReader)
Public MethodReadContentAsBase64Reads the content and returns the Base64 decoded binary bytes. (Inherited from System.Xml.XmlReader)
Public MethodReadContentAsBinHexReads the content and returns the BinHex decoded binary bytes. (Inherited from System.Xml.XmlReader)
Public MethodReadContentAsBooleanReads the text content at the current position as a Boolean. (Inherited from System.Xml.XmlReader)
Public MethodReadContentAsDateTimeReads the text content at the current position as a System.DateTime object. (Inherited from System.Xml.XmlReader)
Public MethodReadContentAsDecimalReads the text content at the current position as a System.Decimal object. (Inherited from System.Xml.XmlReader)
Public MethodReadContentAsDoubleReads the text content at the current position as a double-precision floating-point number. (Inherited from System.Xml.XmlReader)
Public MethodReadContentAsFloatReads the text content at the current position as a single-precision floating point number. (Inherited from System.Xml.XmlReader)
Public MethodReadContentAsIntReads the text content at the current position as a 32-bit signed integer. (Inherited from System.Xml.XmlReader)
Public MethodReadContentAsLongReads the text content at the current position as a 64-bit signed integer. (Inherited from System.Xml.XmlReader)
Public MethodReadContentAsObjectReads the text content at the current position as an System.Object. (Inherited from System.Xml.XmlReader)
Public MethodReadContentAsStringReads the text content at the current position as a System.String object. (Inherited from System.Xml.XmlReader)
Public MethodReadElementContentAsOverloaded. Reads the element content as the requested type. (Inherited from System.Xml.XmlReader)
Public MethodReadElementContentAsBase64Reads the element and decodes the Base64 content. (Inherited from System.Xml.XmlReader)
Public MethodReadElementContentAsBinHexReads the element and decodes the BinHex content. (Inherited from System.Xml.XmlReader)
Public MethodReadElementContentAsBooleanOverloaded. Reads the current element and returns the contents as a System.Boolean object. (Inherited from System.Xml.XmlReader)
Public MethodReadElementContentAsDateTimeOverloaded. Reads the current element and returns the contents as a System.DateTime object. (Inherited from System.Xml.XmlReader)
Public MethodReadElementContentAsDecimalOverloaded. Reads the current element and returns the contents as a System.Decimal object. (Inherited from System.Xml.XmlReader)
Public MethodReadElementContentAsDoubleOverloaded. Reads the current element and returns the contents as a double-precision floating-point number. (Inherited from System.Xml.XmlReader)
Public MethodReadElementContentAsFloatOverloaded. Reads the current element and returns the contents as single-precision floating-point number. (Inherited from System.Xml.XmlReader)
Public MethodReadElementContentAsIntOverloaded. Reads the current element and returns the contents as a 32-bit signed integer. (Inherited from System.Xml.XmlReader)
Public MethodReadElementContentAsLongOverloaded. Reads the current element and returns the contents as a 64-bit signed integer. (Inherited from System.Xml.XmlReader)
Public MethodReadElementContentAsObjectOverloaded. Reads the current element and returns the contents as an System.Object. (Inherited from System.Xml.XmlReader)
Public MethodReadElementContentAsStringOverloaded. Reads the current element and returns the contents as a System.String object. (Inherited from System.Xml.XmlReader)
Public MethodReadEndElementChecks that the current content node is an end tag and advances the reader to the next node. (Inherited from System.Xml.XmlReader)
Public MethodReadInnerXmlWhen overridden in a derived class, reads all the content, including markup, as a string. (Inherited from System.Xml.XmlReader)
Public MethodReadOuterXmlWhen overridden in a derived class, reads the content, including markup, representing this node and all its children. (Inherited from System.Xml.XmlReader)
Public MethodReadStartElementOverloaded. Checks that the current node is an element and advances the reader to the next node. (Inherited from System.Xml.XmlReader)
Public MethodReadSubtreeReturns a new XmlReader instance that can be used to read the current node, and all its descendants. (Inherited from System.Xml.XmlReader)
Public MethodReadToDescendantOverloaded. Advances the System.Xml.XmlReader to the next descendant element with the specified qualified name. (Inherited from System.Xml.XmlReader)
Public MethodReadToFollowingOverloaded. Reads until an element with the specified qualified name is found. (Inherited from System.Xml.XmlReader)
Public MethodReadToNextSiblingOverloaded. Advances the XmlReader to the next sibling element with the specified qualified name. (Inherited from System.Xml.XmlReader)
Public MethodReadValueChunkReads large streams of text embedded in an XML document. (Inherited from System.Xml.XmlReader)
Public MethodResolveEntityOverridden.  Resolves the entity reference for EntityReference nodes.  
Public MethodSkipSkips the children of the current node. (Inherited from System.Xml.XmlReader)
Top
See Also

Reference

XPSParser Class
Intersoft.Client.Documents Namespace

Send Feedback