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