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.String
assemblyFullName
Fully assembly qualified name: System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: System.Webstatic java.lang.String
className
Qualified class name: System.Web.UI.WebControls.Xmlstatic JCType
classType
The type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Xml
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoXml
, a cast assert is made to check if types are compatible.Control
FindControl(java.lang.String id)
void
Focus()
XmlDocument
getDocument()
java.lang.String
getDocumentContent()
java.lang.String
getDocumentSource()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class TypeXslTransform
getTransform()
XsltArgumentList
getTransformArgumentList()
java.lang.String
getTransformSource()
XPathNavigator
getXPathNavigator()
boolean
HasControls()
void
setDocument(XmlDocument Document)
void
setDocumentContent(java.lang.String DocumentContent)
void
setDocumentSource(java.lang.String DocumentSource)
void
setJCOInstance(JCObject instance)
void
setTransform(XslTransform Transform)
void
setTransformArgumentList(XsltArgumentList TransformArgumentList)
void
setTransformSource(java.lang.String TransformSource)
void
setXPathNavigator(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:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOAssemblyName
in interfaceIParserAccessor
- Overrides:
getJCOAssemblyName
in classControl
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOClassName
in interfaceIParserAccessor
- Overrides:
getJCOClassName
in classControl
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOObjectName
in interfaceIParserAccessor
- Overrides:
getJCOObjectName
in classControl
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Specified by:
getJCOInstance
in interfaceIParserAccessor
- Overrides:
getJCOInstance
in classControl
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classControl
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Specified by:
getJCOType
in interfaceIParserAccessor
- Overrides:
getJCOType
in classControl
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static Xml cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoXml
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Xml
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
HasControls
public boolean HasControls() throws java.lang.Throwable
- Overrides:
HasControls
in 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:
FindControl
in classControl
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
HttpException
ConfigurationErrorsException
NullReferenceException
ArgumentOutOfRangeException
NotImplementedException
-
Focus
public void Focus() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException
- Overrides:
Focus
in classControl
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
-
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.Throwable
ArgumentException
ConfigurationErrorsException
HttpException
ArgumentNullException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
MissingManifestResourceException
ConfigurationException
XmlException
NotImplementedException
HttpRequestValidationException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
-
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
-
-