Package system.web.ui
Class PostBackOptions
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.web.ui.PostBackOptions
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class PostBackOptions extends NetObject
The base .NET class managing System.Web.UI.PostBackOptions, 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.PostBackOptions
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.PostBackOptionsstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description PostBackOptions()
PostBackOptions(java.lang.Object instance)
Internal constructor.PostBackOptions(Control targetControl)
PostBackOptions(Control targetControl, java.lang.String argument)
PostBackOptions(Control targetControl, java.lang.String argument, java.lang.String actionUrl, boolean autoPostBack, boolean requiresJavaScriptProtocol, boolean trackFocus, boolean clientSubmit, boolean performValidation, java.lang.String validationGroup)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PostBackOptions
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoPostBackOptions
, a cast assert is made to check if types are compatible.java.lang.String
getActionUrl()
java.lang.String
getArgument()
boolean
getAutoPostBack()
boolean
getClientSubmit()
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 Typeboolean
getPerformValidation()
boolean
getRequiresJavaScriptProtocol()
Control
getTargetControl()
boolean
getTrackFocus()
java.lang.String
getValidationGroup()
void
setActionUrl(java.lang.String ActionUrl)
void
setArgument(java.lang.String Argument)
void
setAutoPostBack(boolean AutoPostBack)
void
setClientSubmit(boolean ClientSubmit)
void
setJCOInstance(JCObject instance)
void
setPerformValidation(boolean PerformValidation)
void
setRequiresJavaScriptProtocol(boolean RequiresJavaScriptProtocol)
void
setTrackFocus(boolean TrackFocus)
void
setValidationGroup(java.lang.String ValidationGroup)
-
-
-
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.PostBackOptions- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PostBackOptions
public PostBackOptions(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
PostBackOptions
public PostBackOptions() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
PostBackOptions
public PostBackOptions(Control targetControl) throws java.lang.Throwable, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentNullException
-
PostBackOptions
public PostBackOptions(Control targetControl, java.lang.String argument) throws java.lang.Throwable, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentNullException
-
PostBackOptions
public PostBackOptions(Control targetControl, java.lang.String argument, java.lang.String actionUrl, boolean autoPostBack, boolean requiresJavaScriptProtocol, boolean trackFocus, boolean clientSubmit, boolean performValidation, java.lang.String validationGroup) throws java.lang.Throwable, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentNullException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- 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
- Overrides:
getJCOClassName
in classNetObject
- 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
- Overrides:
getJCOObjectName
in classNetObject
- 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
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static PostBackOptions cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoPostBackOptions
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
PostBackOptions
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
getAutoPostBack
public boolean getAutoPostBack() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setAutoPostBack
public void setAutoPostBack(boolean AutoPostBack) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getClientSubmit
public boolean getClientSubmit() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setClientSubmit
public void setClientSubmit(boolean ClientSubmit) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getPerformValidation
public boolean getPerformValidation() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setPerformValidation
public void setPerformValidation(boolean PerformValidation) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getRequiresJavaScriptProtocol
public boolean getRequiresJavaScriptProtocol() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setRequiresJavaScriptProtocol
public void setRequiresJavaScriptProtocol(boolean RequiresJavaScriptProtocol) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getTrackFocus
public boolean getTrackFocus() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setTrackFocus
public void setTrackFocus(boolean TrackFocus) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getActionUrl
public java.lang.String getActionUrl() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setActionUrl
public void setActionUrl(java.lang.String ActionUrl) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getArgument
public java.lang.String getArgument() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setArgument
public void setArgument(java.lang.String Argument) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getValidationGroup
public java.lang.String getValidationGroup() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setValidationGroup
public void setValidationGroup(java.lang.String ValidationGroup) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getTargetControl
public Control getTargetControl() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-