Package system.web
Class HttpServerUtility
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.web.HttpServerUtility
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class HttpServerUtility extends NetObject
The base .NET class managing System.Web.HttpServerUtility, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Web.HttpServerUtility
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.HttpServerUtilitystatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description HttpServerUtility()
HttpServerUtility(java.lang.Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HttpServerUtility
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoHttpServerUtility
, a cast assert is made to check if types are compatible.void
ClearError()
NetObject
CreateObject(java.lang.String progID)
NetObject
CreateObject(NetType type)
NetObject
CreateObjectFromClsid(java.lang.String clsid)
void
Execute(java.lang.String path)
void
Execute(java.lang.String path, boolean preserveForm)
void
Execute(java.lang.String path, TextWriter writer)
void
Execute(java.lang.String path, TextWriter writer, boolean preserveForm)
void
Execute(IHttpHandler handler, TextWriter writer, boolean preserveForm)
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 TypeNetException
GetLastError()
java.lang.String
getMachineName()
int
getScriptTimeout()
java.lang.String
HtmlDecode(java.lang.String s)
void
HtmlDecode(java.lang.String s, TextWriter output)
java.lang.String
HtmlEncode(java.lang.String s)
void
HtmlEncode(java.lang.String s, TextWriter output)
java.lang.String
MapPath(java.lang.String path)
void
setJCOInstance(JCObject instance)
void
setScriptTimeout(int ScriptTimeout)
void
Transfer(java.lang.String path)
void
Transfer(java.lang.String path, boolean preserveForm)
void
Transfer(IHttpHandler handler, boolean preserveForm)
void
TransferRequest(java.lang.String path)
void
TransferRequest(java.lang.String path, boolean preserveForm)
void
TransferRequest(java.lang.String path, boolean preserveForm, java.lang.String method, NameValueCollection headers)
void
TransferRequest(java.lang.String path, boolean preserveForm, java.lang.String method, NameValueCollection headers, boolean preserveUser)
java.lang.String
UrlDecode(java.lang.String s)
void
UrlDecode(java.lang.String s, TextWriter output)
java.lang.String
UrlEncode(java.lang.String s)
void
UrlEncode(java.lang.String s, TextWriter output)
java.lang.String
UrlPathEncode(java.lang.String s)
static byte[]
UrlTokenDecode(java.lang.String input)
static java.lang.String
UrlTokenEncode(byte[] input)
static java.lang.String
UrlTokenEncode(JCORefOut dupParam0)
-
-
-
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.HttpServerUtility- 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
- 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 HttpServerUtility cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoHttpServerUtility
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
HttpServerUtility
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
UrlTokenDecode
public static byte[] UrlTokenDecode(java.lang.String input) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ThreadAbortException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotSupportedException, ArgumentOutOfRangeException, FormatException
-
GetLastError
public NetException GetLastError() throws java.lang.Throwable, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
-
CreateObject
public NetObject CreateObject(java.lang.String progID) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, HttpException, ConfigurationErrorsException, SecurityException, ConfigurationException, ProviderException, NullReferenceException, MemberAccessException, OutOfMemoryException, EventSourceException, WaitHandleCannotBeOpenedException, UnauthorizedAccessException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
HttpException
ConfigurationErrorsException
SecurityException
ConfigurationException
ProviderException
NullReferenceException
MemberAccessException
OutOfMemoryException
EventSourceException
WaitHandleCannotBeOpenedException
UnauthorizedAccessException
IOException
-
CreateObject
public NetObject CreateObject(NetType type) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, HttpException, ConfigurationErrorsException, SecurityException, ConfigurationException, ProviderException, NullReferenceException, MemberAccessException, OutOfMemoryException, EventSourceException, WaitHandleCannotBeOpenedException, UnauthorizedAccessException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
HttpException
ConfigurationErrorsException
SecurityException
ConfigurationException
ProviderException
NullReferenceException
MemberAccessException
OutOfMemoryException
EventSourceException
WaitHandleCannotBeOpenedException
UnauthorizedAccessException
IOException
-
CreateObjectFromClsid
public NetObject CreateObjectFromClsid(java.lang.String clsid) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, FormatException, HttpException, ConfigurationErrorsException, SecurityException, ConfigurationException, ProviderException, NullReferenceException, MemberAccessException, OutOfMemoryException, EventSourceException, WaitHandleCannotBeOpenedException, UnauthorizedAccessException, IOException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
FormatException
HttpException
ConfigurationErrorsException
SecurityException
ConfigurationException
ProviderException
NullReferenceException
MemberAccessException
OutOfMemoryException
EventSourceException
WaitHandleCannotBeOpenedException
UnauthorizedAccessException
IOException
-
HtmlDecode
public java.lang.String HtmlDecode(java.lang.String s) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ThreadAbortException, ArgumentNullException, MissingMethodException, TargetInvocationException, ConfigurationException, ArgumentOutOfRangeException
-
HtmlEncode
public java.lang.String HtmlEncode(java.lang.String s) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ThreadAbortException, ArgumentNullException, MissingMethodException, TargetInvocationException, ConfigurationException, ArgumentOutOfRangeException
-
MapPath
public java.lang.String MapPath(java.lang.String path) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, HttpException, FormatException, ThreadAbortException, HttpRequestValidationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
HttpException
FormatException
ThreadAbortException
HttpRequestValidationException
-
UrlDecode
public java.lang.String UrlDecode(java.lang.String s) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, HttpException, NotSupportedException, IndexOutOfRangeException, HttpRequestValidationException, ConfigurationErrorsException, ConfigurationException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
HttpException
NotSupportedException
IndexOutOfRangeException
HttpRequestValidationException
ConfigurationErrorsException
ConfigurationException
NullReferenceException
-
UrlEncode
public java.lang.String UrlEncode(java.lang.String s) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, HttpException, HttpRequestValidationException, ConfigurationErrorsException, NotSupportedException, ThreadAbortException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
HttpException
HttpRequestValidationException
ConfigurationErrorsException
NotSupportedException
ThreadAbortException
-
UrlPathEncode
public java.lang.String UrlPathEncode(java.lang.String s) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ThreadAbortException, ArgumentNullException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, FormatException, UriFormatException
- Throws:
java.lang.Throwable
ArgumentException
InvalidOperationException
ThreadAbortException
ArgumentNullException
MissingMethodException
TargetInvocationException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
FormatException
UriFormatException
-
UrlTokenEncode
public static java.lang.String UrlTokenEncode(byte[] input) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ThreadAbortException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException
-
UrlTokenEncode
public static java.lang.String UrlTokenEncode(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ThreadAbortException, ArgumentNullException, MissingMethodException, TargetInvocationException, NotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException
-
ClearError
public void ClearError() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Execute
public void Execute(java.lang.String path) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, HttpException, ArgumentOutOfRangeException, ConfigurationErrorsException, ConfigurationException, OutOfMemoryException, ThreadAbortException, HttpRequestValidationException, EventSourceException, FormatException, OverflowException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
HttpException
ArgumentOutOfRangeException
ConfigurationErrorsException
ConfigurationException
OutOfMemoryException
ThreadAbortException
HttpRequestValidationException
EventSourceException
FormatException
OverflowException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SecurityException
AbandonedMutexException
-
Execute
public void Execute(java.lang.String path, boolean preserveForm) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, HttpException, ArgumentOutOfRangeException, ConfigurationErrorsException, ConfigurationException, OutOfMemoryException, ThreadAbortException, HttpRequestValidationException, EventSourceException, FormatException, OverflowException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
HttpException
ArgumentOutOfRangeException
ConfigurationErrorsException
ConfigurationException
OutOfMemoryException
ThreadAbortException
HttpRequestValidationException
EventSourceException
FormatException
OverflowException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SecurityException
AbandonedMutexException
-
Execute
public void Execute(java.lang.String path, TextWriter writer) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, HttpException, ArgumentOutOfRangeException, ConfigurationErrorsException, ConfigurationException, OutOfMemoryException, ThreadAbortException, HttpRequestValidationException, EventSourceException, FormatException, OverflowException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
HttpException
ArgumentOutOfRangeException
ConfigurationErrorsException
ConfigurationException
OutOfMemoryException
ThreadAbortException
HttpRequestValidationException
EventSourceException
FormatException
OverflowException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SecurityException
AbandonedMutexException
-
Execute
public void Execute(java.lang.String path, TextWriter writer, boolean preserveForm) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, HttpException, ConfigurationErrorsException, ConfigurationException, InvalidCastException, NullReferenceException, ThreadAbortException, HttpRequestValidationException, MissingMethodException, OutOfMemoryException, EventSourceException, FormatException, OverflowException, PathTooLongException, SecurityException, IOException, PlatformNotSupportedException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
HttpException
ConfigurationErrorsException
ConfigurationException
InvalidCastException
NullReferenceException
ThreadAbortException
HttpRequestValidationException
MissingMethodException
OutOfMemoryException
EventSourceException
FormatException
OverflowException
PathTooLongException
SecurityException
IOException
PlatformNotSupportedException
OperationCanceledException
-
Execute
public void Execute(IHttpHandler handler, TextWriter writer, boolean preserveForm) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, HttpException, ThreadAbortException, HttpRequestValidationException, ConfigurationErrorsException, ConfigurationException, NullReferenceException, FormatException, OverflowException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
HttpException
ThreadAbortException
HttpRequestValidationException
ConfigurationErrorsException
ConfigurationException
NullReferenceException
FormatException
OverflowException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SecurityException
AbandonedMutexException
-
HtmlDecode
public void HtmlDecode(java.lang.String s, TextWriter output) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ThreadAbortException, ArgumentNullException, MissingMethodException, TargetInvocationException, ConfigurationException, ArgumentOutOfRangeException
-
HtmlEncode
public void HtmlEncode(java.lang.String s, TextWriter output) throws java.lang.Throwable, ArgumentException, InvalidOperationException, ThreadAbortException, ArgumentNullException, MissingMethodException, TargetInvocationException, ConfigurationException, ArgumentOutOfRangeException
-
Transfer
public void Transfer(java.lang.String path) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, ApplicationException, NotSupportedException, HttpException, ConfigurationErrorsException, ConfigurationException, HttpRequestValidationException, SecurityException, TargetParameterCountException, FormatException, OverflowException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
ApplicationException
NotSupportedException
HttpException
ConfigurationErrorsException
ConfigurationException
HttpRequestValidationException
SecurityException
TargetParameterCountException
FormatException
OverflowException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
-
Transfer
public void Transfer(java.lang.String path, boolean preserveForm) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, ApplicationException, HttpException, ConfigurationErrorsException, ConfigurationException, ThreadAbortException, HttpRequestValidationException, OutOfMemoryException, EventSourceException, FormatException, OverflowException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
ApplicationException
HttpException
ConfigurationErrorsException
ConfigurationException
ThreadAbortException
HttpRequestValidationException
OutOfMemoryException
EventSourceException
FormatException
OverflowException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SecurityException
AbandonedMutexException
-
Transfer
public void Transfer(IHttpHandler handler, boolean preserveForm) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, ApplicationException, HttpException, HttpRequestValidationException, ConfigurationErrorsException, ConfigurationException, NullReferenceException, FormatException, OverflowException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
ApplicationException
HttpException
HttpRequestValidationException
ConfigurationErrorsException
ConfigurationException
NullReferenceException
FormatException
OverflowException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
-
TransferRequest
public void TransferRequest(java.lang.String path) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, PlatformNotSupportedException, HttpException, ArgumentOutOfRangeException, ConfigurationErrorsException, ConfigurationException, OutOfMemoryException, ThreadAbortException, HttpRequestValidationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
PlatformNotSupportedException
HttpException
ArgumentOutOfRangeException
ConfigurationErrorsException
ConfigurationException
OutOfMemoryException
ThreadAbortException
HttpRequestValidationException
-
TransferRequest
public void TransferRequest(java.lang.String path, boolean preserveForm) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, PlatformNotSupportedException, HttpException, ArgumentOutOfRangeException, ConfigurationErrorsException, ConfigurationException, OutOfMemoryException, ThreadAbortException, HttpRequestValidationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
PlatformNotSupportedException
HttpException
ArgumentOutOfRangeException
ConfigurationErrorsException
ConfigurationException
OutOfMemoryException
ThreadAbortException
HttpRequestValidationException
-
TransferRequest
public void TransferRequest(java.lang.String path, boolean preserveForm, java.lang.String method, NameValueCollection headers) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, PlatformNotSupportedException, HttpException, ArgumentOutOfRangeException, ConfigurationErrorsException, ConfigurationException, OutOfMemoryException, ThreadAbortException, HttpRequestValidationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
PlatformNotSupportedException
HttpException
ArgumentOutOfRangeException
ConfigurationErrorsException
ConfigurationException
OutOfMemoryException
ThreadAbortException
HttpRequestValidationException
-
TransferRequest
public void TransferRequest(java.lang.String path, boolean preserveForm, java.lang.String method, NameValueCollection headers, boolean preserveUser) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException, PlatformNotSupportedException, HttpException, ConfigurationErrorsException, ConfigurationException, InvalidCastException, NullReferenceException, ThreadAbortException, HttpRequestValidationException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
NotSupportedException
PlatformNotSupportedException
HttpException
ConfigurationErrorsException
ConfigurationException
InvalidCastException
NullReferenceException
ThreadAbortException
HttpRequestValidationException
OutOfMemoryException
-
UrlDecode
public void UrlDecode(java.lang.String s, TextWriter output) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, HttpException, NotSupportedException, HttpRequestValidationException, ConfigurationErrorsException, ConfigurationException, FormatException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
HttpException
NotSupportedException
HttpRequestValidationException
ConfigurationErrorsException
ConfigurationException
FormatException
NullReferenceException
-
UrlEncode
public void UrlEncode(java.lang.String s, TextWriter output) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, HttpException, ConfigurationErrorsException, NotSupportedException, ThreadAbortException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
HttpException
ConfigurationErrorsException
NotSupportedException
ThreadAbortException
-
getScriptTimeout
public int getScriptTimeout() throws java.lang.Throwable, ArgumentException, HttpException, ArgumentNullException, HttpRequestValidationException, ConfigurationErrorsException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, ConfigurationException, OverflowException
- Throws:
java.lang.Throwable
ArgumentException
HttpException
ArgumentNullException
HttpRequestValidationException
ConfigurationErrorsException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
ConfigurationException
OverflowException
-
setScriptTimeout
public void setScriptTimeout(int ScriptTimeout) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, HttpException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
HttpException
-
getMachineName
public java.lang.String getMachineName() throws java.lang.Throwable, ArgumentException, ArgumentNullException, FormatException, ArgumentOutOfRangeException, NotImplementedException, InvalidOperationException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, HttpException
-
-