Package system.web.ui
Class ClientScriptManager
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.web.ui.ClientScriptManager
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class ClientScriptManager extends NetObject
The base .NET class managing System.Web.UI.ClientScriptManager, 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.ClientScriptManager
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.ClientScriptManagerstatic JCTypeclassTypeThe type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description ClientScriptManager()ClientScriptManager(java.lang.Object instance)Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ClientScriptManagercast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoClientScriptManager, a cast assert is made to check if types are compatible.java.lang.StringGetCallbackEventReference(java.lang.String target, java.lang.String argument, java.lang.String clientCallback, java.lang.String context, java.lang.String clientErrorCallback, boolean useAsync)java.lang.StringGetCallbackEventReference(Control control, java.lang.String argument, java.lang.String clientCallback, java.lang.String context)java.lang.StringGetCallbackEventReference(Control control, java.lang.String argument, java.lang.String clientCallback, java.lang.String context, boolean useAsync)java.lang.StringGetCallbackEventReference(Control control, java.lang.String argument, java.lang.String clientCallback, java.lang.String context, java.lang.String clientErrorCallback, boolean useAsync)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 Typejava.lang.StringGetPostBackClientHyperlink(Control control, java.lang.String argument)java.lang.StringGetPostBackClientHyperlink(Control control, java.lang.String argument, boolean registerForEventValidation)java.lang.StringGetPostBackEventReference(Control control, java.lang.String argument)java.lang.StringGetPostBackEventReference(Control control, java.lang.String argument, boolean registerForEventValidation)java.lang.StringGetPostBackEventReference(PostBackOptions options)java.lang.StringGetPostBackEventReference(PostBackOptions options, boolean registerForEventValidation)java.lang.StringGetWebResourceUrl(NetType type, java.lang.String resourceName)booleanIsClientScriptBlockRegistered(java.lang.String key)booleanIsClientScriptBlockRegistered(NetType type, java.lang.String key)booleanIsClientScriptIncludeRegistered(java.lang.String key)booleanIsClientScriptIncludeRegistered(NetType type, java.lang.String key)booleanIsOnSubmitStatementRegistered(java.lang.String key)booleanIsOnSubmitStatementRegistered(NetType type, java.lang.String key)booleanIsStartupScriptRegistered(java.lang.String key)booleanIsStartupScriptRegistered(NetType type, java.lang.String key)voidRegisterArrayDeclaration(java.lang.String arrayName, java.lang.String arrayValue)voidRegisterClientScriptBlock(NetType type, java.lang.String key, java.lang.String script)voidRegisterClientScriptBlock(NetType type, java.lang.String key, java.lang.String script, boolean addScriptTags)voidRegisterClientScriptInclude(java.lang.String key, java.lang.String url)voidRegisterClientScriptInclude(NetType type, java.lang.String key, java.lang.String url)voidRegisterClientScriptResource(NetType type, java.lang.String resourceName)voidRegisterExpandoAttribute(java.lang.String controlId, java.lang.String attributeName, java.lang.String attributeValue)voidRegisterExpandoAttribute(java.lang.String controlId, java.lang.String attributeName, java.lang.String attributeValue, boolean encode)voidRegisterForEventValidation(java.lang.String uniqueId)voidRegisterForEventValidation(java.lang.String uniqueId, java.lang.String argument)voidRegisterForEventValidation(PostBackOptions options)voidRegisterHiddenField(java.lang.String hiddenFieldName, java.lang.String hiddenFieldInitialValue)voidRegisterOnSubmitStatement(NetType type, java.lang.String key, java.lang.String script)voidRegisterStartupScript(NetType type, java.lang.String key, java.lang.String script)voidRegisterStartupScript(NetType type, java.lang.String key, java.lang.String script, boolean addScriptTags)voidsetJCOInstance(JCObject instance)voidValidateEvent(java.lang.String uniqueId)voidValidateEvent(java.lang.String uniqueId, java.lang.String argument)
-
-
-
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.ClientScriptManager- 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- Overrides:
getJCOAssemblyNamein classNetObject- 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 classNetObject- 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 classNetObject- 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 classNetObject- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Overrides:
getJCOTypein classNetObject- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static ClientScriptManager cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoClientScriptManager, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
ClientScriptManagerinstance- Throws:
java.lang.Throwable- in case of error during cast operation
-
IsClientScriptBlockRegistered
public boolean IsClientScriptBlockRegistered(java.lang.String key) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
IsClientScriptBlockRegistered
public boolean IsClientScriptBlockRegistered(NetType type, java.lang.String key) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
IsClientScriptIncludeRegistered
public boolean IsClientScriptIncludeRegistered(java.lang.String key) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
IsClientScriptIncludeRegistered
public boolean IsClientScriptIncludeRegistered(NetType type, java.lang.String key) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
IsOnSubmitStatementRegistered
public boolean IsOnSubmitStatementRegistered(java.lang.String key) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
IsOnSubmitStatementRegistered
public boolean IsOnSubmitStatementRegistered(NetType type, java.lang.String key) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
IsStartupScriptRegistered
public boolean IsStartupScriptRegistered(java.lang.String key) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
IsStartupScriptRegistered
public boolean IsStartupScriptRegistered(NetType type, java.lang.String key) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
GetCallbackEventReference
public java.lang.String GetCallbackEventReference(java.lang.String target, java.lang.String argument, java.lang.String clientCallback, java.lang.String context, java.lang.String clientErrorCallback, boolean useAsync) throws java.lang.Throwable, ArgumentException, ConfigurationErrorsException, ArgumentNullException, MissingManifestResourceException, InvalidOperationException, HttpException, TypeLoadException, MissingMethodException, TargetInvocationException, ProviderException, IndexOutOfRangeException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, FormatException, UriFormatException, OutOfMemoryException, NotImplementedException- Throws:
java.lang.ThrowableArgumentExceptionConfigurationErrorsExceptionArgumentNullExceptionMissingManifestResourceExceptionInvalidOperationExceptionHttpExceptionTypeLoadExceptionMissingMethodExceptionTargetInvocationExceptionProviderExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionNotSupportedExceptionFormatExceptionUriFormatExceptionOutOfMemoryExceptionNotImplementedException
-
GetCallbackEventReference
public java.lang.String GetCallbackEventReference(Control control, java.lang.String argument, java.lang.String clientCallback, java.lang.String context) throws java.lang.Throwable, ArgumentNullException, ConfigurationErrorsException, ArgumentException, ConfigurationException, HttpException, IndexOutOfRangeException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, HttpRequestValidationException, UriFormatException, OutOfMemoryException, NotImplementedException
- Throws:
java.lang.ThrowableArgumentNullExceptionConfigurationErrorsExceptionArgumentExceptionConfigurationExceptionHttpExceptionIndexOutOfRangeExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionFormatExceptionHttpRequestValidationExceptionUriFormatExceptionOutOfMemoryExceptionNotImplementedException
-
GetCallbackEventReference
public java.lang.String GetCallbackEventReference(Control control, java.lang.String argument, java.lang.String clientCallback, java.lang.String context, boolean useAsync) throws java.lang.Throwable, ArgumentNullException, ConfigurationErrorsException, ArgumentException, NotSupportedException, ConfigurationException, HttpException, InvalidOperationException, NotImplementedException, IndexOutOfRangeException, ArgumentOutOfRangeException, CultureNotFoundException, FormatException, HttpRequestValidationException, UriFormatException, OutOfMemoryException
- Throws:
java.lang.ThrowableArgumentNullExceptionConfigurationErrorsExceptionArgumentExceptionNotSupportedExceptionConfigurationExceptionHttpExceptionInvalidOperationExceptionNotImplementedExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionFormatExceptionHttpRequestValidationExceptionUriFormatExceptionOutOfMemoryException
-
GetCallbackEventReference
public java.lang.String GetCallbackEventReference(Control control, java.lang.String argument, java.lang.String clientCallback, java.lang.String context, java.lang.String clientErrorCallback, boolean useAsync) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, ArgumentOutOfRangeException, ConfigurationErrorsException, InvalidOperationException, NotSupportedException, ConfigurationException, HttpException, NotImplementedException, CultureNotFoundException, FormatException, ThreadAbortException, HttpRequestValidationException, UriFormatException, OutOfMemoryException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionArgumentOutOfRangeExceptionConfigurationErrorsExceptionInvalidOperationExceptionNotSupportedExceptionConfigurationExceptionHttpExceptionNotImplementedExceptionCultureNotFoundExceptionFormatExceptionThreadAbortExceptionHttpRequestValidationExceptionUriFormatExceptionOutOfMemoryException
-
GetPostBackClientHyperlink
public java.lang.String GetPostBackClientHyperlink(Control control, java.lang.String argument) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ConfigurationErrorsException, HttpException, NullReferenceException, InvalidOperationException, ArgumentOutOfRangeException, ConfigurationException, OutOfMemoryException
-
GetPostBackClientHyperlink
public java.lang.String GetPostBackClientHyperlink(Control control, java.lang.String argument, boolean registerForEventValidation) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ConfigurationErrorsException, HttpException, NullReferenceException, InvalidOperationException, ArgumentOutOfRangeException, ConfigurationException, OutOfMemoryException
-
GetPostBackEventReference
public java.lang.String GetPostBackEventReference(Control control, java.lang.String argument) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, ArgumentOutOfRangeException, ConfigurationErrorsException, HttpException, InvalidOperationException, MissingMethodException, TargetInvocationException, ProviderException, NullReferenceException, NotImplementedException, CultureNotFoundException, NotSupportedException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionArgumentOutOfRangeExceptionConfigurationErrorsExceptionHttpExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionProviderExceptionNullReferenceExceptionNotImplementedExceptionCultureNotFoundExceptionNotSupportedException
-
GetPostBackEventReference
public java.lang.String GetPostBackEventReference(Control control, java.lang.String argument, boolean registerForEventValidation) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, ArgumentOutOfRangeException, ConfigurationErrorsException, HttpException, InvalidOperationException, MissingMethodException, TargetInvocationException, ProviderException, NullReferenceException, NotImplementedException, CultureNotFoundException, NotSupportedException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionArgumentOutOfRangeExceptionConfigurationErrorsExceptionHttpExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionProviderExceptionNullReferenceExceptionNotImplementedExceptionCultureNotFoundExceptionNotSupportedException
-
GetPostBackEventReference
public java.lang.String GetPostBackEventReference(PostBackOptions options) throws java.lang.Throwable, ArgumentNullException, ConfigurationErrorsException, ArgumentException, ConfigurationException, HttpException, IndexOutOfRangeException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, OutOfMemoryException
-
GetPostBackEventReference
public java.lang.String GetPostBackEventReference(PostBackOptions options, boolean registerForEventValidation) throws java.lang.Throwable, ArgumentNullException, ConfigurationErrorsException, ArgumentException, NotSupportedException, ConfigurationException, HttpException, InvalidOperationException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, OutOfMemoryException
- Throws:
java.lang.ThrowableArgumentNullExceptionConfigurationErrorsExceptionArgumentExceptionNotSupportedExceptionConfigurationExceptionHttpExceptionInvalidOperationExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionOutOfMemoryException
-
GetWebResourceUrl
public java.lang.String GetWebResourceUrl(NetType type, java.lang.String resourceName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, CultureNotFoundException, InvalidOperationException, NotSupportedException, MissingManifestResourceException, ConfigurationErrorsException, HttpException, NotImplementedException
-
RegisterArrayDeclaration
public void RegisterArrayDeclaration(java.lang.String arrayName, java.lang.String arrayValue) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeException
-
RegisterClientScriptBlock
public void RegisterClientScriptBlock(NetType type, java.lang.String key, java.lang.String script) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException
-
RegisterClientScriptBlock
public void RegisterClientScriptBlock(NetType type, java.lang.String key, java.lang.String script, boolean addScriptTags) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException
-
RegisterClientScriptInclude
public void RegisterClientScriptInclude(java.lang.String key, java.lang.String url) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, ThreadAbortException, HttpException
-
RegisterClientScriptInclude
public void RegisterClientScriptInclude(NetType type, java.lang.String key, java.lang.String url) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ThreadAbortException, HttpException, NullReferenceException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionThreadAbortExceptionHttpExceptionNullReferenceException
-
RegisterClientScriptResource
public void RegisterClientScriptResource(NetType type, java.lang.String resourceName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationErrorsException, HttpException, InvalidOperationException, NotImplementedException, OutOfMemoryException, NullReferenceException
-
RegisterExpandoAttribute
public void RegisterExpandoAttribute(java.lang.String controlId, java.lang.String attributeName, java.lang.String attributeValue) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, OutOfMemoryException
-
RegisterExpandoAttribute
public void RegisterExpandoAttribute(java.lang.String controlId, java.lang.String attributeName, java.lang.String attributeValue, boolean encode) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, OutOfMemoryException
-
RegisterForEventValidation
public void RegisterForEventValidation(java.lang.String uniqueId) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, ConfigurationErrorsException, HttpException, NotSupportedException, ConfigurationException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionConfigurationErrorsExceptionHttpExceptionNotSupportedExceptionConfigurationException
-
RegisterForEventValidation
public void RegisterForEventValidation(java.lang.String uniqueId, java.lang.String argument) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, ConfigurationErrorsException, HttpException, ConfigurationException, InvalidCastException, NullReferenceException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionConfigurationErrorsExceptionHttpExceptionConfigurationExceptionInvalidCastExceptionNullReferenceException
-
RegisterForEventValidation
public void RegisterForEventValidation(PostBackOptions options) throws java.lang.Throwable, ArgumentException, ArgumentNullException, MissingManifestResourceException, ArgumentOutOfRangeException, ConfigurationErrorsException, InvalidOperationException, NotSupportedException, ConfigurationException, HttpException, NotImplementedException, CultureNotFoundException
-
RegisterHiddenField
public void RegisterHiddenField(java.lang.String hiddenFieldName, java.lang.String hiddenFieldInitialValue) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
RegisterOnSubmitStatement
public void RegisterOnSubmitStatement(NetType type, java.lang.String key, java.lang.String script) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
RegisterStartupScript
public void RegisterStartupScript(NetType type, java.lang.String key, java.lang.String script) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException
-
RegisterStartupScript
public void RegisterStartupScript(NetType type, java.lang.String key, java.lang.String script, boolean addScriptTags) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException
-
ValidateEvent
public void ValidateEvent(java.lang.String uniqueId) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, HttpException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionIndexOutOfRangeExceptionHttpException
-
ValidateEvent
public void ValidateEvent(java.lang.String uniqueId, java.lang.String argument) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, HttpException, ConfigurationErrorsException, ConfigurationException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionHttpExceptionConfigurationErrorsExceptionConfigurationException
-
-