Package system.web.ui.webcontrols
Class Xml
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.web.ui.Control
-
- system.web.ui.webcontrols.Xml
-
- All Implemented Interfaces:
java.lang.AutoCloseable,IJCOBridgeReflected,IParserAccessor
public class Xml extends Control
The base .NET class managing System.Web.UI.WebControls.Xml, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Web.UI.WebControls.Xml
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.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.StringassemblyShortNameAssembly name: System.Webstatic java.lang.StringclassNameQualified class name: System.Web.UI.WebControls.Xmlstatic JCTypeclassTypeThe type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Xmlcast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoXml, a cast assert is made to check if types are compatible.ControlFindControl(java.lang.String id)voidFocus()XmlDocumentgetDocument()java.lang.StringgetDocumentContent()java.lang.StringgetDocumentSource()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 TypeXslTransformgetTransform()XsltArgumentListgetTransformArgumentList()java.lang.StringgetTransformSource()XPathNavigatorgetXPathNavigator()booleanHasControls()voidsetDocument(XmlDocument Document)voidsetDocumentContent(java.lang.String DocumentContent)voidsetDocumentSource(java.lang.String DocumentSource)voidsetJCOInstance(JCObject instance)voidsetTransform(XslTransform Transform)voidsetTransformArgumentList(XsltArgumentList TransformArgumentList)voidsetTransformSource(java.lang.String TransformSource)voidsetXPathNavigator(XPathNavigator XPathNavigator)-
Methods inherited from class system.web.ui.Control
addDataBinding, addDisposed, addInit, addLoad, addPreRender, addUnload, ApplyStyleSheetSkin, close, DataBind, Dispose, getAppRelativeTemplateSourceDirectory, getBindingContainer, getClientID, getClientIDMode, getControls, getDataItemContainer, getDataKeysContainer, getEnableTheming, getEnableViewState, getID, getNamingContainer, getPage, getParent, getRenderingCompatibility, GetRouteUrl, GetRouteUrl, GetRouteUrl, GetRouteUrl, getSite, getSkinID, getTemplateControl, getTemplateSourceDirectory, getUniqueID, GetUniqueIDRelativeTo, getValidateRequestMode, getViewStateMode, getVisible, removeDataBinding, removeDisposed, removeInit, removeLoad, removePreRender, removeUnload, RenderControl, ResolveClientUrl, ResolveUrl, setAppRelativeTemplateSourceDirectory, setClientIDMode, setEnableTheming, setEnableViewState, setID, setPage, setRenderingCompatibility, SetRenderMethodDelegate, setSite, setSkinID, setTemplateControl, SetTraceData, SetTraceData, setValidateRequestMode, setViewStateMode, setVisible
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toString, ToString
-
Methods inherited from interface system.web.ui.IParserAccessor
AddParsedSubObject
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Web- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Web.UI.WebControls.Xml- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Specified by:
getJCOAssemblyNamein interfaceIParserAccessor- Overrides:
getJCOAssemblyNamein classControl- 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- Specified by:
getJCOClassNamein interfaceIParserAccessor- Overrides:
getJCOClassNamein classControl- 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- Specified by:
getJCOObjectNamein interfaceIParserAccessor- Overrides:
getJCOObjectNamein classControl- 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- Specified by:
getJCOInstancein interfaceIParserAccessor- Overrides:
getJCOInstancein classControl- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classControl
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Specified by:
getJCOTypein interfaceIParserAccessor- Overrides:
getJCOTypein classControl- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static Xml cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoXml, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
Xmlinstance- Throws:
java.lang.Throwable- in case of error during cast operation
-
HasControls
public boolean HasControls() throws java.lang.Throwable- Overrides:
HasControlsin classControl- Throws:
java.lang.Throwable
-
FindControl
public Control FindControl(java.lang.String id) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, HttpException, ConfigurationErrorsException, NullReferenceException, ArgumentOutOfRangeException, NotImplementedException
- Overrides:
FindControlin classControl- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionHttpExceptionConfigurationErrorsExceptionNullReferenceExceptionArgumentOutOfRangeExceptionNotImplementedException
-
Focus
public void Focus() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException- Overrides:
Focusin classControl- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatException
-
getDocumentContent
public java.lang.String getDocumentContent() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setDocumentContent
public void setDocumentContent(java.lang.String DocumentContent) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException
-
getDocumentSource
public java.lang.String getDocumentSource() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setDocumentSource
public void setDocumentSource(java.lang.String DocumentSource) throws java.lang.Throwable- Throws:
java.lang.Throwable
-
getTransformSource
public java.lang.String getTransformSource() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setTransformSource
public void setTransformSource(java.lang.String TransformSource) throws java.lang.Throwable- Throws:
java.lang.Throwable
-
getDocument
public XmlDocument getDocument() throws java.lang.Throwable, ArgumentException, ConfigurationErrorsException, HttpException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, MissingManifestResourceException, ConfigurationException, XmlException, NotImplementedException, HttpRequestValidationException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.ThrowableArgumentExceptionConfigurationErrorsExceptionHttpExceptionArgumentNullExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionNotSupportedExceptionInvalidOperationExceptionMissingManifestResourceExceptionConfigurationExceptionXmlExceptionNotImplementedExceptionHttpRequestValidationExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledException
-
setDocument
public void setDocument(XmlDocument Document) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getXPathNavigator
public XPathNavigator getXPathNavigator() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setXPathNavigator
public void setXPathNavigator(XPathNavigator XPathNavigator) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getTransformArgumentList
public XsltArgumentList getTransformArgumentList() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setTransformArgumentList
public void setTransformArgumentList(XsltArgumentList TransformArgumentList) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getTransform
public XslTransform getTransform() throws java.lang.Throwable, ArgumentException, ConfigurationErrorsException, ArgumentOutOfRangeException, HttpException, ArgumentNullException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ConfigurationException, InvalidCastException, NullReferenceException
-
setTransform
public void setTransform(XslTransform Transform) throws java.lang.Throwable, ArgumentException, ConfigurationErrorsException, ArgumentOutOfRangeException, HttpException, ArgumentNullException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ConfigurationException, InvalidCastException, NullReferenceException
-
-