Package system.xml
Class XmlDocument
- java.lang.Object
-
- All Implemented Interfaces:
java.lang.Iterable<NetObject>,IEnumerable,IJCOBridgeReflected
- Direct Known Subclasses:
ConfigXmlDocument,XmlDataDocument
public class XmlDocument extends XmlNode
The base .NET class managing System.Xml.XmlDocument, System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Xml.XmlDocument
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringassemblyFullNameFully assembly qualified name: System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.StringassemblyShortNameAssembly name: System.Xmlstatic java.lang.StringclassNameQualified class name: System.Xml.XmlDocumentstatic JCTypeclassTypeThe type managed from JCOBridge.-
Fields inherited from class org.mases.jcobridge.netreflection.NetObjectEnumerable
Null
-
-
Constructor Summary
Constructors Constructor Description XmlDocument()XmlDocument(java.lang.Object instance)Internal constructor.XmlDocument(XmlNameTable nt)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddNodeChanged(XmlNodeChangedEventHandler handler)voidaddNodeChanging(XmlNodeChangedEventHandler handler)voidaddNodeInserted(XmlNodeChangedEventHandler handler)voidaddNodeInserting(XmlNodeChangedEventHandler handler)voidaddNodeRemoved(XmlNodeChangedEventHandler handler)voidaddNodeRemoving(XmlNodeChangedEventHandler handler)static XmlDocumentcast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoXmlDocument, a cast assert is made to check if types are compatible.XmlNodeCloneNode(boolean deep)XmlAttributeCreateAttribute(java.lang.String name)XmlAttributeCreateAttribute(java.lang.String qualifiedName, java.lang.String namespaceURI)XmlAttributeCreateAttribute(java.lang.String prefix, java.lang.String localName, java.lang.String namespaceURI)XmlCDataSectionCreateCDataSection(java.lang.String data)XmlCommentCreateComment(java.lang.String data)XmlDocumentFragmentCreateDocumentFragment()XmlDocumentTypeCreateDocumentType(java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String internalSubset)XmlElementCreateElement(java.lang.String name)XmlElementCreateElement(java.lang.String qualifiedName, java.lang.String namespaceURI)XmlElementCreateElement(java.lang.String prefix, java.lang.String localName, java.lang.String namespaceURI)XmlEntityReferenceCreateEntityReference(java.lang.String name)XPathNavigatorCreateNavigator()XmlNodeCreateNode(java.lang.String nodeTypeString, java.lang.String name, java.lang.String namespaceURI)XmlNodeCreateNode(XmlNodeType type, java.lang.String name, java.lang.String namespaceURI)XmlNodeCreateNode(XmlNodeType type, java.lang.String prefix, java.lang.String name, java.lang.String namespaceURI)XmlProcessingInstructionCreateProcessingInstruction(java.lang.String target, java.lang.String data)XmlSignificantWhitespaceCreateSignificantWhitespace(java.lang.String text)XmlTextCreateTextNode(java.lang.String text)XmlWhitespaceCreateWhitespace(java.lang.String text)XmlDeclarationCreateXmlDeclaration(java.lang.String version, java.lang.String encoding, java.lang.String standalone)XmlElementgetDocumentElement()XmlDocumentTypegetDocumentType()XmlElementGetElementById(java.lang.String elementId)XmlNodeListGetElementsByTagName(java.lang.String name)XmlNodeListGetElementsByTagName(java.lang.String localName, java.lang.String namespaceURI)XmlImplementationgetImplementation()java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class TypeXmlNameTablegetNameTable()booleangetPreserveWhitespace()XmlSchemaSetgetSchemas()XmlNodeImportNode(XmlNode node, boolean deep)voidLoad(java.lang.String filename)voidLoad(Stream inStream)voidLoad(TextReader txtReader)voidLoad(XmlReader reader)voidLoadXml(java.lang.String xml)XmlNodeReadNode(XmlReader reader)voidremoveNodeChanged(XmlNodeChangedEventHandler handler)voidremoveNodeChanging(XmlNodeChangedEventHandler handler)voidremoveNodeInserted(XmlNodeChangedEventHandler handler)voidremoveNodeInserting(XmlNodeChangedEventHandler handler)voidremoveNodeRemoved(XmlNodeChangedEventHandler handler)voidremoveNodeRemoving(XmlNodeChangedEventHandler handler)voidSave(java.lang.String filename)voidSave(Stream outStream)voidSave(TextWriter writer)voidSave(XmlWriter w)voidsetJCOInstance(JCObject instance)voidsetPreserveWhitespace(boolean PreserveWhitespace)voidsetSchemas(XmlSchemaSet Schemas)voidsetXmlResolver(XmlResolver XmlResolver)voidValidate(ValidationEventHandler validationEventHandler)voidValidate(ValidationEventHandler validationEventHandler, XmlNode nodeToValidate)voidWriteContentTo(XmlWriter xw)voidWriteTo(XmlWriter w)-
Methods inherited from class system.xml.XmlNode
AppendChild, Clone, getAttributes, getBaseURI, getChildNodes, getFirstChild, getHasChildNodes, getInnerText, getInnerXml, getIsReadOnly, getLastChild, getLocalName, getName, GetNamespaceOfPrefix, getNamespaceURI, getNextSibling, getNodeType, getOuterXml, getOwnerDocument, getParentNode, getPrefix, GetPrefixOfNamespace, getPreviousSibling, getPreviousText, getSchemaInfo, getValue, InsertAfter, InsertBefore, Normalize, PrependChild, RemoveAll, RemoveChild, ReplaceChild, SelectNodes, SelectNodes, SelectSingleNode, SelectSingleNode, setInnerText, setInnerXml, setPrefix, setValue, Supports
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObjectEnumerable
GetEnumerator, iterator
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Xml- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Xml.XmlDocument- See Also:
- Constant Field Values
-
-
Constructor Detail
-
XmlDocument
public XmlDocument(java.lang.Object instance) throws java.lang.ThrowableInternal constructor. Use with caution- Throws:
java.lang.Throwable
-
XmlDocument
public XmlDocument() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
XmlDocument
public XmlDocument(XmlNameTable nt) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Overrides:
getJCOAssemblyNamein classXmlNode- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Overrides:
getJCOClassNamein classXmlNode- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Overrides:
getJCOObjectNamein classXmlNode- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Overrides:
getJCOInstancein classXmlNode- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classXmlNode
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Overrides:
getJCOTypein classXmlNode- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static XmlDocument cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoXmlDocument, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
XmlDocumentinstance- Throws:
java.lang.Throwable- in case of error during cast operation
-
CreateAttribute
public XmlAttribute CreateAttribute(java.lang.String name) throws java.lang.Throwable, ArgumentOutOfRangeException, NullReferenceException, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, XmlException
-
CreateAttribute
public XmlAttribute CreateAttribute(java.lang.String qualifiedName, java.lang.String namespaceURI) throws java.lang.Throwable, ArgumentOutOfRangeException, NullReferenceException, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, XmlException
-
CreateAttribute
public XmlAttribute CreateAttribute(java.lang.String prefix, java.lang.String localName, java.lang.String namespaceURI) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, XmlException
- Throws:
java.lang.ThrowableNullReferenceExceptionArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionIndexOutOfRangeExceptionXmlException
-
CreateCDataSection
public XmlCDataSection CreateCDataSection(java.lang.String data) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException
-
CreateComment
public XmlComment CreateComment(java.lang.String data) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException
-
CreateXmlDeclaration
public XmlDeclaration CreateXmlDeclaration(java.lang.String version, java.lang.String encoding, java.lang.String standalone) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, OutOfMemoryException, FormatException
-
CreateDocumentFragment
public XmlDocumentFragment CreateDocumentFragment() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
CreateDocumentType
public XmlDocumentType CreateDocumentType(java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String internalSubset) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, XmlException, NotSupportedException, IndexOutOfRangeException, SecurityException, UnauthorizedAccessException, IOException, NullReferenceException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionXmlExceptionNotSupportedExceptionIndexOutOfRangeExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionNullReferenceException
-
CreateElement
public XmlElement CreateElement(java.lang.String name) throws java.lang.Throwable, ArgumentOutOfRangeException, NullReferenceException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, XmlException
-
CreateElement
public XmlElement CreateElement(java.lang.String qualifiedName, java.lang.String namespaceURI) throws java.lang.Throwable, ArgumentOutOfRangeException, NullReferenceException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException, XmlException
-
CreateElement
public XmlElement CreateElement(java.lang.String prefix, java.lang.String localName, java.lang.String namespaceURI) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, XmlException
-
GetElementById
public XmlElement GetElementById(java.lang.String elementId) throws java.lang.Throwable, ArgumentNullException, ObjectDisposedException, AbandonedMutexException
- Throws:
java.lang.ThrowableArgumentNullExceptionObjectDisposedExceptionAbandonedMutexException
-
CreateEntityReference
public XmlEntityReference CreateEntityReference(java.lang.String name) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
CloneNode
public XmlNode CloneNode(boolean deep) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NullReferenceException, XmlException
- Overrides:
CloneNodein classXmlNode- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionNullReferenceExceptionXmlException
-
CreateNode
public XmlNode CreateNode(java.lang.String nodeTypeString, java.lang.String name, java.lang.String namespaceURI) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, NullReferenceException, XmlException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionIndexOutOfRangeExceptionNullReferenceExceptionXmlException
-
CreateNode
public XmlNode CreateNode(XmlNodeType type, java.lang.String name, java.lang.String namespaceURI) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, XmlException
-
CreateNode
public XmlNode CreateNode(XmlNodeType type, java.lang.String prefix, java.lang.String name, java.lang.String namespaceURI) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, XmlException, NotSupportedException
-
ImportNode
public XmlNode ImportNode(XmlNode node, boolean deep) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NullReferenceException, XmlException, IndexOutOfRangeException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionXmlExceptionIndexOutOfRangeException
-
ReadNode
public XmlNode ReadNode(XmlReader reader) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NullReferenceException, XmlException, RankException, NotSupportedException, IndexOutOfRangeException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionXmlExceptionRankExceptionNotSupportedExceptionIndexOutOfRangeException
-
GetElementsByTagName
public XmlNodeList GetElementsByTagName(java.lang.String name) throws java.lang.Throwable, ArgumentException, MulticastNotSupportedException
- Throws:
java.lang.ThrowableArgumentExceptionMulticastNotSupportedException
-
GetElementsByTagName
public XmlNodeList GetElementsByTagName(java.lang.String localName, java.lang.String namespaceURI) throws java.lang.Throwable, ArgumentException, MulticastNotSupportedException
- Throws:
java.lang.ThrowableArgumentExceptionMulticastNotSupportedException
-
CreateProcessingInstruction
public XmlProcessingInstruction CreateProcessingInstruction(java.lang.String target, java.lang.String data) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
CreateSignificantWhitespace
public XmlSignificantWhitespace CreateSignificantWhitespace(java.lang.String text) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException
-
CreateTextNode
public XmlText CreateTextNode(java.lang.String text) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException
-
CreateWhitespace
public XmlWhitespace CreateWhitespace(java.lang.String text) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException
-
CreateNavigator
public XPathNavigator CreateNavigator() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, IndexOutOfRangeException
- Overrides:
CreateNavigatorin classXmlNode- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionIndexOutOfRangeException
-
Load
public void Load(Stream inStream) throws java.lang.Throwable, ArgumentException, NotImplementedException, NotSupportedException, IndexOutOfRangeException, ObjectDisposedException, InvalidOperationException, ArgumentNullException, SecurityException, UnauthorizedAccessException, IOException, ArgumentOutOfRangeException, XmlException, MissingManifestResourceException, XmlSchemaException, NullReferenceException
- Throws:
java.lang.ThrowableArgumentExceptionNotImplementedExceptionNotSupportedExceptionIndexOutOfRangeExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentNullExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionArgumentOutOfRangeExceptionXmlExceptionMissingManifestResourceExceptionXmlSchemaExceptionNullReferenceException
-
Load
public void Load(TextReader txtReader) throws java.lang.Throwable, ArgumentException, NotImplementedException, NotSupportedException, IndexOutOfRangeException, ObjectDisposedException, InvalidOperationException, ArgumentNullException, SecurityException, UnauthorizedAccessException, IOException, ArgumentOutOfRangeException, XmlException, MissingManifestResourceException, XmlSchemaException, NullReferenceException
- Throws:
java.lang.ThrowableArgumentExceptionNotImplementedExceptionNotSupportedExceptionIndexOutOfRangeExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentNullExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionArgumentOutOfRangeExceptionXmlExceptionMissingManifestResourceExceptionXmlSchemaExceptionNullReferenceException
-
Load
public void Load(java.lang.String filename) throws java.lang.Throwable, ArgumentException, InvalidOperationException, NotImplementedException, NotSupportedException, IndexOutOfRangeException, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, SecurityException, UnauthorizedAccessException, IOException, CultureNotFoundException, MissingManifestResourceException, UriFormatException, PathTooLongException, OutOfMemoryException, XmlException, XmlSchemaException, NullReferenceException- Throws:
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionNotImplementedExceptionNotSupportedExceptionIndexOutOfRangeExceptionObjectDisposedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionCultureNotFoundExceptionMissingManifestResourceExceptionUriFormatExceptionPathTooLongExceptionOutOfMemoryExceptionXmlExceptionXmlSchemaExceptionNullReferenceException
-
Load
public void Load(XmlReader reader) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, XmlSchemaException, XmlException, NullReferenceException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionXmlSchemaExceptionXmlExceptionNullReferenceException
-
LoadXml
public void LoadXml(java.lang.String xml) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, NotSupportedException, IndexOutOfRangeException, ObjectDisposedException, InvalidOperationException, SecurityException, UnauthorizedAccessException, IOException, ArgumentOutOfRangeException, XmlException, MissingManifestResourceException, XmlSchemaException, NullReferenceException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionNotSupportedExceptionIndexOutOfRangeExceptionObjectDisposedExceptionInvalidOperationExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionArgumentOutOfRangeExceptionXmlExceptionMissingManifestResourceExceptionXmlSchemaExceptionNullReferenceException
-
Save
public void Save(Stream outStream) throws java.lang.Throwable, ArgumentNullException, ObjectDisposedException, AbandonedMutexException, ArgumentException, ArgumentOutOfRangeException, FormatException, InvalidOperationException, NotSupportedException, NotImplementedException, IndexOutOfRangeException
-
Save
public void Save(TextWriter writer) throws java.lang.Throwable, ArgumentException, InvalidOperationException, NotImplementedException, NotSupportedException, IndexOutOfRangeException, ObjectDisposedException
-
Save
public void Save(java.lang.String filename) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, XmlException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, NullReferenceException, SecurityException, IndexOutOfRangeException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionXmlExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNullReferenceExceptionSecurityExceptionIndexOutOfRangeException
-
Save
public void Save(XmlWriter w) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Validate
public void Validate(ValidationEventHandler validationEventHandler) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, XmlSchemaException, XmlException, NotSupportedException, MulticastNotSupportedException, NullReferenceException, FormatException, XmlSchemaValidationException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionIndexOutOfRangeExceptionXmlSchemaExceptionXmlExceptionNotSupportedExceptionMulticastNotSupportedExceptionNullReferenceExceptionFormatExceptionXmlSchemaValidationException
-
Validate
public void Validate(ValidationEventHandler validationEventHandler, XmlNode nodeToValidate) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, XmlSchemaException, XmlException, IndexOutOfRangeException, MulticastNotSupportedException, NullReferenceException, XmlSchemaValidationException, UriFormatException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionXmlSchemaExceptionXmlExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionNullReferenceExceptionXmlSchemaValidationExceptionUriFormatException
-
WriteContentTo
public void WriteContentTo(XmlWriter xw) throws java.lang.Throwable
- Overrides:
WriteContentToin classXmlNode- Throws:
java.lang.Throwable
-
WriteTo
public void WriteTo(XmlWriter w) throws java.lang.Throwable
-
getPreserveWhitespace
public boolean getPreserveWhitespace() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setPreserveWhitespace
public void setPreserveWhitespace(boolean PreserveWhitespace) throws java.lang.Throwable- Throws:
java.lang.Throwable
-
getSchemas
public XmlSchemaSet getSchemas() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, FormatException, XmlSchemaException, ObjectDisposedException, SecurityException, UnauthorizedAccessException, IOException, MissingManifestResourceException, XmlException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionArgumentOutOfRangeExceptionFormatExceptionXmlSchemaExceptionObjectDisposedExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionMissingManifestResourceExceptionXmlException
-
setSchemas
public void setSchemas(XmlSchemaSet Schemas) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getDocumentType
public XmlDocumentType getDocumentType() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getDocumentElement
public XmlElement getDocumentElement() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getImplementation
public XmlImplementation getImplementation() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getNameTable
public XmlNameTable getNameTable() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setXmlResolver
public void setXmlResolver(XmlResolver XmlResolver) throws java.lang.Throwable, NullReferenceException, ArgumentException, ArgumentOutOfRangeException, NotSupportedException, ArgumentNullException, SecurityException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
- Throws:
java.lang.ThrowableNullReferenceExceptionArgumentExceptionArgumentOutOfRangeExceptionNotSupportedExceptionArgumentNullExceptionSecurityExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedException
-
addNodeChanged
public void addNodeChanged(XmlNodeChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeNodeChanged
public void removeNodeChanged(XmlNodeChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addNodeChanging
public void addNodeChanging(XmlNodeChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeNodeChanging
public void removeNodeChanging(XmlNodeChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addNodeInserted
public void addNodeInserted(XmlNodeChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeNodeInserted
public void removeNodeInserted(XmlNodeChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addNodeInserting
public void addNodeInserting(XmlNodeChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeNodeInserting
public void removeNodeInserting(XmlNodeChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addNodeRemoved
public void addNodeRemoved(XmlNodeChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeNodeRemoved
public void removeNodeRemoved(XmlNodeChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addNodeRemoving
public void addNodeRemoving(XmlNodeChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeNodeRemoving
public void removeNodeRemoving(XmlNodeChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-