Package system.net
Class WebClient
- java.lang.Object
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,IJCOBridgeReflected
public class WebClient extends Component
The base .NET class managing System.Net.WebClient, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Net.WebClient
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, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.String
assemblyShortName
Assembly name: Systemstatic java.lang.String
className
Qualified class name: System.Net.WebClientstatic JCType
classType
The type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addDownloadDataCompleted(DownloadDataCompletedEventHandler handler)
void
addDownloadFileCompleted(AsyncCompletedEventHandler handler)
void
addDownloadProgressChanged(DownloadProgressChangedEventHandler handler)
void
addDownloadStringCompleted(DownloadStringCompletedEventHandler handler)
void
addOpenReadCompleted(OpenReadCompletedEventHandler handler)
void
addOpenWriteCompleted(OpenWriteCompletedEventHandler handler)
void
addUploadDataCompleted(UploadDataCompletedEventHandler handler)
void
addUploadFileCompleted(UploadFileCompletedEventHandler handler)
void
addUploadProgressChanged(UploadProgressChangedEventHandler handler)
void
addUploadStringCompleted(UploadStringCompletedEventHandler handler)
void
addUploadValuesCompleted(UploadValuesCompletedEventHandler handler)
void
addWriteStreamClosed(WriteStreamClosedEventHandler handler)
void
CancelAsync()
static WebClient
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoWebClient
, a cast assert is made to check if types are compatible.byte[]
DownloadData(java.lang.String address)
byte[]
DownloadData(Uri address)
void
DownloadDataAsync(Uri address)
void
DownloadDataAsync(Uri address, NetObject userToken)
void
DownloadFile(java.lang.String address, java.lang.String fileName)
void
DownloadFile(Uri address, java.lang.String fileName)
void
DownloadFileAsync(Uri address, java.lang.String fileName)
void
DownloadFileAsync(Uri address, java.lang.String fileName, NetObject userToken)
Task
DownloadFileTaskAsync(java.lang.String address, java.lang.String fileName)
Task
DownloadFileTaskAsync(Uri address, java.lang.String fileName)
java.lang.String
DownloadString(java.lang.String address)
java.lang.String
DownloadString(Uri address)
void
DownloadStringAsync(Uri address)
void
DownloadStringAsync(Uri address, NetObject userToken)
boolean
getAllowReadStreamBuffering()
boolean
getAllowWriteStreamBuffering()
java.lang.String
getBaseAddress()
RequestCachePolicy
getCachePolicy()
ICredentials
getCredentials()
Encoding
getEncoding()
WebHeaderCollection
getHeaders()
boolean
getIsBusy()
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 TypeIWebProxy
getProxy()
NameValueCollection
getQueryString()
WebHeaderCollection
getResponseHeaders()
boolean
getUseDefaultCredentials()
Stream
OpenRead(java.lang.String address)
Stream
OpenRead(Uri address)
void
OpenReadAsync(Uri address)
void
OpenReadAsync(Uri address, NetObject userToken)
Stream
OpenWrite(java.lang.String address)
Stream
OpenWrite(java.lang.String address, java.lang.String method)
Stream
OpenWrite(Uri address)
Stream
OpenWrite(Uri address, java.lang.String method)
void
OpenWriteAsync(Uri address)
void
OpenWriteAsync(Uri address, java.lang.String method)
void
OpenWriteAsync(Uri address, java.lang.String method, NetObject userToken)
void
removeDownloadDataCompleted(DownloadDataCompletedEventHandler handler)
void
removeDownloadFileCompleted(AsyncCompletedEventHandler handler)
void
removeDownloadProgressChanged(DownloadProgressChangedEventHandler handler)
void
removeDownloadStringCompleted(DownloadStringCompletedEventHandler handler)
void
removeOpenReadCompleted(OpenReadCompletedEventHandler handler)
void
removeOpenWriteCompleted(OpenWriteCompletedEventHandler handler)
void
removeUploadDataCompleted(UploadDataCompletedEventHandler handler)
void
removeUploadFileCompleted(UploadFileCompletedEventHandler handler)
void
removeUploadProgressChanged(UploadProgressChangedEventHandler handler)
void
removeUploadStringCompleted(UploadStringCompletedEventHandler handler)
void
removeUploadValuesCompleted(UploadValuesCompletedEventHandler handler)
void
removeWriteStreamClosed(WriteStreamClosedEventHandler handler)
void
setAllowReadStreamBuffering(boolean AllowReadStreamBuffering)
void
setAllowWriteStreamBuffering(boolean AllowWriteStreamBuffering)
void
setBaseAddress(java.lang.String BaseAddress)
void
setCachePolicy(RequestCachePolicy CachePolicy)
void
setCredentials(ICredentials Credentials)
void
setEncoding(Encoding Encoding)
void
setHeaders(WebHeaderCollection Headers)
void
setJCOInstance(JCObject instance)
void
setProxy(IWebProxy Proxy)
void
setQueryString(NameValueCollection QueryString)
void
setUseDefaultCredentials(boolean UseDefaultCredentials)
byte[]
UploadData(java.lang.String address, byte[] data)
byte[]
UploadData(java.lang.String address, java.lang.String method, byte[] data)
byte[]
UploadData(java.lang.String dupParam0, java.lang.String dupParam1, JCORefOut dupParam2)
byte[]
UploadData(java.lang.String dupParam0, JCORefOut dupParam1)
byte[]
UploadData(Uri address, byte[] data)
byte[]
UploadData(Uri address, java.lang.String method, byte[] data)
byte[]
UploadData(Uri dupParam0, java.lang.String dupParam1, JCORefOut dupParam2)
byte[]
UploadData(Uri dupParam0, JCORefOut dupParam1)
void
UploadDataAsync(Uri address, byte[] data)
void
UploadDataAsync(Uri address, java.lang.String method, byte[] data)
void
UploadDataAsync(Uri address, java.lang.String method, byte[] data, NetObject userToken)
void
UploadDataAsync(Uri dupParam0, java.lang.String dupParam1, JCORefOut dupParam2)
void
UploadDataAsync(Uri dupParam0, java.lang.String dupParam1, JCORefOut dupParam2, NetObject dupParam3)
void
UploadDataAsync(Uri dupParam0, JCORefOut dupParam1)
byte[]
UploadFile(java.lang.String address, java.lang.String fileName)
byte[]
UploadFile(java.lang.String address, java.lang.String method, java.lang.String fileName)
byte[]
UploadFile(Uri address, java.lang.String fileName)
byte[]
UploadFile(Uri address, java.lang.String method, java.lang.String fileName)
void
UploadFileAsync(Uri address, java.lang.String fileName)
void
UploadFileAsync(Uri address, java.lang.String method, java.lang.String fileName)
void
UploadFileAsync(Uri address, java.lang.String method, java.lang.String fileName, NetObject userToken)
java.lang.String
UploadString(java.lang.String address, java.lang.String data)
java.lang.String
UploadString(java.lang.String address, java.lang.String method, java.lang.String data)
java.lang.String
UploadString(Uri address, java.lang.String data)
java.lang.String
UploadString(Uri address, java.lang.String method, java.lang.String data)
void
UploadStringAsync(Uri address, java.lang.String data)
void
UploadStringAsync(Uri address, java.lang.String method, java.lang.String data)
void
UploadStringAsync(Uri address, java.lang.String method, java.lang.String data, NetObject userToken)
byte[]
UploadValues(java.lang.String address, java.lang.String method, NameValueCollection data)
byte[]
UploadValues(java.lang.String address, NameValueCollection data)
byte[]
UploadValues(Uri address, java.lang.String method, NameValueCollection data)
byte[]
UploadValues(Uri address, NameValueCollection data)
void
UploadValuesAsync(Uri address, java.lang.String method, NameValueCollection data)
void
UploadValuesAsync(Uri address, java.lang.String method, NameValueCollection data, NetObject userToken)
void
UploadValuesAsync(Uri address, NameValueCollection data)
-
Methods inherited from class system.componentmodel.Component
addDisposed, close, Dispose, getContainer, getSite, removeDisposed, setSite
-
Methods inherited from class system.MarshalByRefObject
CreateObjRef, GetLifetimeService, InitializeLifetimeService
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Net.WebClient- See Also:
- Constant Field Values
-
-
Constructor Detail
-
WebClient
public WebClient(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
WebClient
public WebClient() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, NotSupportedException, ObjectDisposedException, AbandonedMutexException, ArgumentException, InvalidOperationException
-
-
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 classComponent
- 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 classComponent
- 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 classComponent
- 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 classComponent
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classComponent
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classComponent
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static WebClient cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoWebClient
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
WebClient
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
DownloadData
public byte[] DownloadData(java.lang.String address) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, MissingMethodException, WebException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
MissingMethodException
WebException
SemaphoreFullException
-
DownloadData
public byte[] DownloadData(Uri address) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, InvalidCastException, CultureNotFoundException, MissingMethodException, NotImplementedException, WebException, ObjectDisposedException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
InvalidCastException
CultureNotFoundException
MissingMethodException
NotImplementedException
WebException
ObjectDisposedException
SemaphoreFullException
-
UploadData
public byte[] UploadData(java.lang.String address, byte[] data) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, MissingMethodException, SemaphoreFullException, WebException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
MissingMethodException
SemaphoreFullException
WebException
-
UploadData
public byte[] UploadData(java.lang.String dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, MissingMethodException, SemaphoreFullException, WebException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
MissingMethodException
SemaphoreFullException
WebException
-
UploadData
public byte[] UploadData(java.lang.String address, java.lang.String method, byte[] data) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, MissingMethodException, SemaphoreFullException, WebException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
MissingMethodException
SemaphoreFullException
WebException
-
UploadData
public byte[] UploadData(java.lang.String dupParam0, java.lang.String dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, MissingMethodException, SemaphoreFullException, WebException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
MissingMethodException
SemaphoreFullException
WebException
-
UploadData
public byte[] UploadData(Uri address, byte[] data) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, MissingMethodException, NotImplementedException, SemaphoreFullException, WebException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
MissingMethodException
NotImplementedException
SemaphoreFullException
WebException
-
UploadData
public byte[] UploadData(Uri dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, MissingMethodException, NotImplementedException, SemaphoreFullException, WebException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
MissingMethodException
NotImplementedException
SemaphoreFullException
WebException
-
UploadData
public byte[] UploadData(Uri address, java.lang.String method, byte[] data) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, MemberAccessException, CultureNotFoundException, InvalidCastException, MissingMethodException, NotImplementedException, ObjectDisposedException, SemaphoreFullException, WebException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
MemberAccessException
CultureNotFoundException
InvalidCastException
MissingMethodException
NotImplementedException
ObjectDisposedException
SemaphoreFullException
WebException
-
UploadData
public byte[] UploadData(Uri dupParam0, java.lang.String dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, MemberAccessException, CultureNotFoundException, InvalidCastException, MissingMethodException, NotImplementedException, ObjectDisposedException, SemaphoreFullException, WebException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
MemberAccessException
CultureNotFoundException
InvalidCastException
MissingMethodException
NotImplementedException
ObjectDisposedException
SemaphoreFullException
WebException
-
UploadFile
public byte[] UploadFile(java.lang.String address, java.lang.String fileName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, WebException, IOException, OverflowException, InvalidCastException, MissingMethodException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
MulticastNotSupportedException
WebException
IOException
OverflowException
InvalidCastException
MissingMethodException
SemaphoreFullException
-
UploadFile
public byte[] UploadFile(java.lang.String address, java.lang.String method, java.lang.String fileName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, WebException, IOException, InvalidTimeZoneException, MissingMethodException, TargetInvocationException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
WebException
IOException
InvalidTimeZoneException
MissingMethodException
TargetInvocationException
SemaphoreFullException
-
UploadFile
public byte[] UploadFile(Uri address, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, WebException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, InvalidTimeZoneException, MissingMethodException, TargetInvocationException, NotImplementedException, ObjectDisposedException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
WebException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
InvalidTimeZoneException
MissingMethodException
TargetInvocationException
NotImplementedException
ObjectDisposedException
SemaphoreFullException
-
UploadFile
public byte[] UploadFile(Uri address, java.lang.String method, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, MemberAccessException, CultureNotFoundException, WebException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, InvalidTimeZoneException, InvalidCastException, MissingMethodException, NotImplementedException, TaskCanceledException, AggregateException, ObjectDisposedException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
MemberAccessException
CultureNotFoundException
WebException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
InvalidTimeZoneException
InvalidCastException
MissingMethodException
NotImplementedException
TaskCanceledException
AggregateException
ObjectDisposedException
SemaphoreFullException
-
UploadValues
public byte[] UploadValues(java.lang.String address, NameValueCollection data) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, WebException, MissingMethodException, TargetInvocationException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
WebException
MissingMethodException
TargetInvocationException
SemaphoreFullException
-
UploadValues
public byte[] UploadValues(java.lang.String address, java.lang.String method, NameValueCollection data) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, WebException, MissingMethodException, TargetInvocationException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
WebException
MissingMethodException
TargetInvocationException
SemaphoreFullException
-
UploadValues
public byte[] UploadValues(Uri address, NameValueCollection data) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, WebException, MissingMethodException, TargetInvocationException, NotImplementedException, ObjectDisposedException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
WebException
MissingMethodException
TargetInvocationException
NotImplementedException
ObjectDisposedException
SemaphoreFullException
-
UploadValues
public byte[] UploadValues(Uri address, java.lang.String method, NameValueCollection data) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, MemberAccessException, CultureNotFoundException, WebException, InvalidCastException, MissingMethodException, NotImplementedException, TaskCanceledException, AggregateException, ObjectDisposedException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
MemberAccessException
CultureNotFoundException
WebException
InvalidCastException
MissingMethodException
NotImplementedException
TaskCanceledException
AggregateException
ObjectDisposedException
SemaphoreFullException
-
OpenRead
public Stream OpenRead(java.lang.String address) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
MissingMethodException
TargetInvocationException
-
OpenRead
public Stream OpenRead(Uri address) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, MemberAccessException, InvalidCastException, MissingMethodException, NotImplementedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
MemberAccessException
InvalidCastException
MissingMethodException
NotImplementedException
-
OpenWrite
public Stream OpenWrite(java.lang.String address) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
MissingMethodException
TargetInvocationException
-
OpenWrite
public Stream OpenWrite(java.lang.String address, java.lang.String method) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
MissingMethodException
TargetInvocationException
-
OpenWrite
public Stream OpenWrite(Uri address) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, MissingMethodException, TargetInvocationException, NotImplementedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
MissingMethodException
TargetInvocationException
NotImplementedException
-
OpenWrite
public Stream OpenWrite(Uri address, java.lang.String method) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, MemberAccessException, CultureNotFoundException, InvalidCastException, MissingMethodException, NotImplementedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
MemberAccessException
CultureNotFoundException
InvalidCastException
MissingMethodException
NotImplementedException
-
DownloadString
public java.lang.String DownloadString(java.lang.String address) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, MissingMethodException, WebException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
MissingMethodException
WebException
SemaphoreFullException
-
DownloadString
public java.lang.String DownloadString(Uri address) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, InvalidCastException, CultureNotFoundException, MissingMethodException, NotImplementedException, WebException, ObjectDisposedException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
InvalidCastException
CultureNotFoundException
MissingMethodException
NotImplementedException
WebException
ObjectDisposedException
SemaphoreFullException
-
UploadString
public java.lang.String UploadString(java.lang.String address, java.lang.String data) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, MissingMethodException, SemaphoreFullException, WebException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
MissingMethodException
SemaphoreFullException
WebException
-
UploadString
public java.lang.String UploadString(java.lang.String address, java.lang.String method, java.lang.String data) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, MissingMethodException, SemaphoreFullException, WebException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
MissingMethodException
SemaphoreFullException
WebException
-
UploadString
public java.lang.String UploadString(Uri address, java.lang.String data) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, MissingMethodException, NotImplementedException, SemaphoreFullException, WebException, ObjectDisposedException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
MissingMethodException
NotImplementedException
SemaphoreFullException
WebException
ObjectDisposedException
AbandonedMutexException
-
UploadString
public java.lang.String UploadString(Uri address, java.lang.String method, java.lang.String data) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, MemberAccessException, CultureNotFoundException, InvalidCastException, MissingMethodException, NotImplementedException, ObjectDisposedException, SemaphoreFullException, WebException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
MemberAccessException
CultureNotFoundException
InvalidCastException
MissingMethodException
NotImplementedException
ObjectDisposedException
SemaphoreFullException
WebException
AbandonedMutexException
-
DownloadFileTaskAsync
public Task DownloadFileTaskAsync(java.lang.String address, java.lang.String fileName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, TaskSchedulerException, MulticastNotSupportedException, ConfigurationException, ConfigurationErrorsException, IOException, InvalidCastException, MissingMethodException, WebException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
TaskSchedulerException
MulticastNotSupportedException
ConfigurationException
ConfigurationErrorsException
IOException
InvalidCastException
MissingMethodException
WebException
SemaphoreFullException
-
DownloadFileTaskAsync
public Task DownloadFileTaskAsync(Uri address, java.lang.String fileName) throws java.lang.Throwable, ArgumentOutOfRangeException, InvalidOperationException, ObjectDisposedException, TaskSchedulerException, ArgumentNullException, ArgumentException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, OutOfMemoryException, NotSupportedException, NullReferenceException, PathTooLongException, IndexOutOfRangeException, SecurityException, IOException, UriFormatException, MissingMethodException, TargetInvocationException, NotImplementedException, WebException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
InvalidOperationException
ObjectDisposedException
TaskSchedulerException
ArgumentNullException
ArgumentException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
OutOfMemoryException
NotSupportedException
NullReferenceException
PathTooLongException
IndexOutOfRangeException
SecurityException
IOException
UriFormatException
MissingMethodException
TargetInvocationException
NotImplementedException
WebException
SemaphoreFullException
-
CancelAsync
public void CancelAsync() throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
DownloadDataAsync
public void DownloadDataAsync(Uri address) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, NotSupportedException, NullReferenceException, UriFormatException, SecurityException, MissingMethodException, TargetInvocationException, NotImplementedException, WebException, ObjectDisposedException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
NotSupportedException
NullReferenceException
UriFormatException
SecurityException
MissingMethodException
TargetInvocationException
NotImplementedException
WebException
ObjectDisposedException
SemaphoreFullException
-
DownloadDataAsync
public void DownloadDataAsync(Uri address, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, SecurityException, UriFormatException, MemberAccessException, InvalidCastException, MissingMethodException, NotImplementedException, WebException, TaskCanceledException, AggregateException, ObjectDisposedException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
SecurityException
UriFormatException
MemberAccessException
InvalidCastException
MissingMethodException
NotImplementedException
WebException
TaskCanceledException
AggregateException
ObjectDisposedException
SemaphoreFullException
-
DownloadFile
public void DownloadFile(java.lang.String address, java.lang.String fileName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, SecurityException, UriFormatException, OutOfMemoryException, PathTooLongException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, IOException, MissingMethodException, TargetInvocationException, WebException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
ArgumentOutOfRangeException
IndexOutOfRangeException
SecurityException
UriFormatException
OutOfMemoryException
PathTooLongException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
IOException
MissingMethodException
TargetInvocationException
WebException
SemaphoreFullException
-
DownloadFile
public void DownloadFile(Uri address, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException, UriFormatException, MemberAccessException, InvalidCastException, MissingMethodException, NotImplementedException, WebException, TaskCanceledException, AggregateException, ObjectDisposedException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SecurityException
UriFormatException
MemberAccessException
InvalidCastException
MissingMethodException
NotImplementedException
WebException
TaskCanceledException
AggregateException
ObjectDisposedException
SemaphoreFullException
-
DownloadFileAsync
public void DownloadFileAsync(Uri address, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, NotSupportedException, NullReferenceException, PathTooLongException, IndexOutOfRangeException, SecurityException, IOException, UriFormatException, MissingMethodException, TargetInvocationException, NotImplementedException, WebException, ObjectDisposedException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
NotSupportedException
NullReferenceException
PathTooLongException
IndexOutOfRangeException
SecurityException
IOException
UriFormatException
MissingMethodException
TargetInvocationException
NotImplementedException
WebException
ObjectDisposedException
SemaphoreFullException
-
DownloadFileAsync
public void DownloadFileAsync(Uri address, java.lang.String fileName, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, SecurityException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, UriFormatException, MemberAccessException, InvalidCastException, MissingMethodException, NotImplementedException, WebException, TaskCanceledException, AggregateException, ObjectDisposedException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
SecurityException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
UriFormatException
MemberAccessException
InvalidCastException
MissingMethodException
NotImplementedException
WebException
TaskCanceledException
AggregateException
ObjectDisposedException
SemaphoreFullException
-
DownloadStringAsync
public void DownloadStringAsync(Uri address) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, NotSupportedException, NullReferenceException, UriFormatException, SecurityException, MissingMethodException, TargetInvocationException, NotImplementedException, ObjectDisposedException, AbandonedMutexException, WebException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
NotSupportedException
NullReferenceException
UriFormatException
SecurityException
MissingMethodException
TargetInvocationException
NotImplementedException
ObjectDisposedException
AbandonedMutexException
WebException
SemaphoreFullException
-
DownloadStringAsync
public void DownloadStringAsync(Uri address, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, SecurityException, UriFormatException, MemberAccessException, InvalidCastException, MissingMethodException, NotImplementedException, ObjectDisposedException, AbandonedMutexException, WebException, TaskCanceledException, AggregateException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
SecurityException
UriFormatException
MemberAccessException
InvalidCastException
MissingMethodException
NotImplementedException
ObjectDisposedException
AbandonedMutexException
WebException
TaskCanceledException
AggregateException
SemaphoreFullException
-
OpenReadAsync
public void OpenReadAsync(Uri address) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, NotSupportedException, NullReferenceException, UriFormatException, SecurityException, MissingMethodException, TargetInvocationException, NotImplementedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
NotSupportedException
NullReferenceException
UriFormatException
SecurityException
MissingMethodException
TargetInvocationException
NotImplementedException
-
OpenReadAsync
public void OpenReadAsync(Uri address, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, SecurityException, UriFormatException, MemberAccessException, InvalidCastException, MissingMethodException, NotImplementedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
SecurityException
UriFormatException
MemberAccessException
InvalidCastException
MissingMethodException
NotImplementedException
-
OpenWriteAsync
public void OpenWriteAsync(Uri address) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, MissingMethodException, TargetInvocationException, NotImplementedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
MissingMethodException
TargetInvocationException
NotImplementedException
-
OpenWriteAsync
public void OpenWriteAsync(Uri address, java.lang.String method) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, MissingMethodException, TargetInvocationException, NotImplementedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
MissingMethodException
TargetInvocationException
NotImplementedException
-
OpenWriteAsync
public void OpenWriteAsync(Uri address, java.lang.String method, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, MemberAccessException, CultureNotFoundException, InvalidCastException, MissingMethodException, NotImplementedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
MemberAccessException
CultureNotFoundException
InvalidCastException
MissingMethodException
NotImplementedException
-
UploadDataAsync
public void UploadDataAsync(Uri address, byte[] data) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, MissingMethodException, TargetInvocationException, NotImplementedException, WebException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
MissingMethodException
TargetInvocationException
NotImplementedException
WebException
-
UploadDataAsync
public void UploadDataAsync(Uri dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, MissingMethodException, TargetInvocationException, NotImplementedException, WebException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
MissingMethodException
TargetInvocationException
NotImplementedException
WebException
-
UploadDataAsync
public void UploadDataAsync(Uri address, java.lang.String method, byte[] data) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, MissingMethodException, TargetInvocationException, NotImplementedException, WebException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
MissingMethodException
TargetInvocationException
NotImplementedException
WebException
-
UploadDataAsync
public void UploadDataAsync(Uri dupParam0, java.lang.String dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, MissingMethodException, TargetInvocationException, NotImplementedException, WebException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
MissingMethodException
TargetInvocationException
NotImplementedException
WebException
-
UploadDataAsync
public void UploadDataAsync(Uri address, java.lang.String method, byte[] data, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, MemberAccessException, CultureNotFoundException, InvalidCastException, MissingMethodException, NotImplementedException, WebException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
MemberAccessException
CultureNotFoundException
InvalidCastException
MissingMethodException
NotImplementedException
WebException
SemaphoreFullException
-
UploadDataAsync
public void UploadDataAsync(Uri dupParam0, java.lang.String dupParam1, JCORefOut dupParam2, NetObject dupParam3) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, MemberAccessException, CultureNotFoundException, InvalidCastException, MissingMethodException, NotImplementedException, WebException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
MemberAccessException
CultureNotFoundException
InvalidCastException
MissingMethodException
NotImplementedException
WebException
SemaphoreFullException
-
UploadFileAsync
public void UploadFileAsync(Uri address, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, WebException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, InvalidTimeZoneException, MissingMethodException, TargetInvocationException, NotImplementedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
WebException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
InvalidTimeZoneException
MissingMethodException
TargetInvocationException
NotImplementedException
-
UploadFileAsync
public void UploadFileAsync(Uri address, java.lang.String method, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, WebException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, InvalidTimeZoneException, MissingMethodException, TargetInvocationException, NotImplementedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
WebException
PathTooLongException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
DriveNotFoundException
OperationCanceledException
InvalidTimeZoneException
MissingMethodException
TargetInvocationException
NotImplementedException
-
UploadFileAsync
public void UploadFileAsync(Uri address, java.lang.String method, java.lang.String fileName, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, MemberAccessException, CultureNotFoundException, WebException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, InvalidTimeZoneException, InvalidCastException, MissingMethodException, NotImplementedException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
MemberAccessException
CultureNotFoundException
WebException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
InvalidTimeZoneException
InvalidCastException
MissingMethodException
NotImplementedException
SemaphoreFullException
-
UploadStringAsync
public void UploadStringAsync(Uri address, java.lang.String data) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, MissingMethodException, TargetInvocationException, NotImplementedException, WebException, ObjectDisposedException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
MissingMethodException
TargetInvocationException
NotImplementedException
WebException
ObjectDisposedException
AbandonedMutexException
-
UploadStringAsync
public void UploadStringAsync(Uri address, java.lang.String method, java.lang.String data) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, MissingMethodException, TargetInvocationException, NotImplementedException, WebException, ObjectDisposedException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
MissingMethodException
TargetInvocationException
NotImplementedException
WebException
ObjectDisposedException
AbandonedMutexException
-
UploadStringAsync
public void UploadStringAsync(Uri address, java.lang.String method, java.lang.String data, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, MemberAccessException, CultureNotFoundException, InvalidCastException, MissingMethodException, NotImplementedException, WebException, SemaphoreFullException, ObjectDisposedException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
MemberAccessException
CultureNotFoundException
InvalidCastException
MissingMethodException
NotImplementedException
WebException
SemaphoreFullException
ObjectDisposedException
AbandonedMutexException
-
UploadValuesAsync
public void UploadValuesAsync(Uri address, NameValueCollection data) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, WebException, MissingMethodException, TargetInvocationException, NotImplementedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
WebException
MissingMethodException
TargetInvocationException
NotImplementedException
-
UploadValuesAsync
public void UploadValuesAsync(Uri address, java.lang.String method, NameValueCollection data) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, NotSupportedException, WebException, MissingMethodException, TargetInvocationException, NotImplementedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
NotSupportedException
WebException
MissingMethodException
TargetInvocationException
NotImplementedException
-
UploadValuesAsync
public void UploadValuesAsync(Uri address, java.lang.String method, NameValueCollection data, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, UriFormatException, SecurityException, MemberAccessException, CultureNotFoundException, WebException, InvalidCastException, MissingMethodException, NotImplementedException, SemaphoreFullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
NotSupportedException
ConfigurationException
ConfigurationErrorsException
OverflowException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
UriFormatException
SecurityException
MemberAccessException
CultureNotFoundException
WebException
InvalidCastException
MissingMethodException
NotImplementedException
SemaphoreFullException
-
getAllowReadStreamBuffering
public boolean getAllowReadStreamBuffering() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setAllowReadStreamBuffering
public void setAllowReadStreamBuffering(boolean AllowReadStreamBuffering) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getAllowWriteStreamBuffering
public boolean getAllowWriteStreamBuffering() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setAllowWriteStreamBuffering
public void setAllowWriteStreamBuffering(boolean AllowWriteStreamBuffering) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIsBusy
public boolean getIsBusy() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getUseDefaultCredentials
public boolean getUseDefaultCredentials() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setUseDefaultCredentials
public void setUseDefaultCredentials(boolean UseDefaultCredentials) throws java.lang.Throwable, ArgumentNullException, FormatException, ArgumentException, IndexOutOfRangeException, NullReferenceException, ArgumentOutOfRangeException, NotSupportedException
-
getQueryString
public NameValueCollection getQueryString() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
-
setQueryString
public void setQueryString(NameValueCollection QueryString) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getCachePolicy
public RequestCachePolicy getCachePolicy() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setCachePolicy
public void setCachePolicy(RequestCachePolicy CachePolicy) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getCredentials
public ICredentials getCredentials() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setCredentials
public void setCredentials(ICredentials Credentials) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getProxy
public IWebProxy getProxy() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, FormatException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, ConfigurationException, SecurityException, OutOfMemoryException, TypeLoadException, ConfigurationErrorsException, InvalidCastException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
FormatException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
ConfigurationException
SecurityException
OutOfMemoryException
TypeLoadException
ConfigurationErrorsException
InvalidCastException
-
setProxy
public void setProxy(IWebProxy Proxy) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getHeaders
public WebHeaderCollection getHeaders() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setHeaders
public void setHeaders(WebHeaderCollection Headers) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getResponseHeaders
public WebHeaderCollection getResponseHeaders() throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
getBaseAddress
public java.lang.String getBaseAddress() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setBaseAddress
public void setBaseAddress(java.lang.String BaseAddress) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, SecurityException, MemberAccessException, NullReferenceException, ConfigurationException, UriFormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
SecurityException
MemberAccessException
NullReferenceException
ConfigurationException
UriFormatException
OutOfMemoryException
-
getEncoding
public Encoding getEncoding() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setEncoding
public void setEncoding(Encoding Encoding) throws java.lang.Throwable, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentNullException
-
addDownloadFileCompleted
public void addDownloadFileCompleted(AsyncCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeDownloadFileCompleted
public void removeDownloadFileCompleted(AsyncCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addDownloadDataCompleted
public void addDownloadDataCompleted(DownloadDataCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeDownloadDataCompleted
public void removeDownloadDataCompleted(DownloadDataCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addDownloadProgressChanged
public void addDownloadProgressChanged(DownloadProgressChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeDownloadProgressChanged
public void removeDownloadProgressChanged(DownloadProgressChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addDownloadStringCompleted
public void addDownloadStringCompleted(DownloadStringCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeDownloadStringCompleted
public void removeDownloadStringCompleted(DownloadStringCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addOpenReadCompleted
public void addOpenReadCompleted(OpenReadCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeOpenReadCompleted
public void removeOpenReadCompleted(OpenReadCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addOpenWriteCompleted
public void addOpenWriteCompleted(OpenWriteCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeOpenWriteCompleted
public void removeOpenWriteCompleted(OpenWriteCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addUploadDataCompleted
public void addUploadDataCompleted(UploadDataCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeUploadDataCompleted
public void removeUploadDataCompleted(UploadDataCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addUploadFileCompleted
public void addUploadFileCompleted(UploadFileCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeUploadFileCompleted
public void removeUploadFileCompleted(UploadFileCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addUploadProgressChanged
public void addUploadProgressChanged(UploadProgressChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeUploadProgressChanged
public void removeUploadProgressChanged(UploadProgressChangedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addUploadStringCompleted
public void addUploadStringCompleted(UploadStringCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeUploadStringCompleted
public void removeUploadStringCompleted(UploadStringCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addUploadValuesCompleted
public void addUploadValuesCompleted(UploadValuesCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeUploadValuesCompleted
public void removeUploadValuesCompleted(UploadValuesCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addWriteStreamClosed
public void addWriteStreamClosed(WriteStreamClosedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeWriteStreamClosed
public void removeWriteStreamClosed(WriteStreamClosedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-