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.StringassemblyFullNameFully assembly qualified name: System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.StringassemblyShortNameAssembly name: Systemstatic java.lang.StringclassNameQualified class name: System.Net.WebClientstatic JCTypeclassTypeThe type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddDownloadDataCompleted(DownloadDataCompletedEventHandler handler)voidaddDownloadFileCompleted(AsyncCompletedEventHandler handler)voidaddDownloadProgressChanged(DownloadProgressChangedEventHandler handler)voidaddDownloadStringCompleted(DownloadStringCompletedEventHandler handler)voidaddOpenReadCompleted(OpenReadCompletedEventHandler handler)voidaddOpenWriteCompleted(OpenWriteCompletedEventHandler handler)voidaddUploadDataCompleted(UploadDataCompletedEventHandler handler)voidaddUploadFileCompleted(UploadFileCompletedEventHandler handler)voidaddUploadProgressChanged(UploadProgressChangedEventHandler handler)voidaddUploadStringCompleted(UploadStringCompletedEventHandler handler)voidaddUploadValuesCompleted(UploadValuesCompletedEventHandler handler)voidaddWriteStreamClosed(WriteStreamClosedEventHandler handler)voidCancelAsync()static WebClientcast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoWebClient, a cast assert is made to check if types are compatible.byte[]DownloadData(java.lang.String address)byte[]DownloadData(Uri address)voidDownloadDataAsync(Uri address)voidDownloadDataAsync(Uri address, NetObject userToken)voidDownloadFile(java.lang.String address, java.lang.String fileName)voidDownloadFile(Uri address, java.lang.String fileName)voidDownloadFileAsync(Uri address, java.lang.String fileName)voidDownloadFileAsync(Uri address, java.lang.String fileName, NetObject userToken)TaskDownloadFileTaskAsync(java.lang.String address, java.lang.String fileName)TaskDownloadFileTaskAsync(Uri address, java.lang.String fileName)java.lang.StringDownloadString(java.lang.String address)java.lang.StringDownloadString(Uri address)voidDownloadStringAsync(Uri address)voidDownloadStringAsync(Uri address, NetObject userToken)booleangetAllowReadStreamBuffering()booleangetAllowWriteStreamBuffering()java.lang.StringgetBaseAddress()RequestCachePolicygetCachePolicy()ICredentialsgetCredentials()EncodinggetEncoding()WebHeaderCollectiongetHeaders()booleangetIsBusy()java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class TypeIWebProxygetProxy()NameValueCollectiongetQueryString()WebHeaderCollectiongetResponseHeaders()booleangetUseDefaultCredentials()StreamOpenRead(java.lang.String address)StreamOpenRead(Uri address)voidOpenReadAsync(Uri address)voidOpenReadAsync(Uri address, NetObject userToken)StreamOpenWrite(java.lang.String address)StreamOpenWrite(java.lang.String address, java.lang.String method)StreamOpenWrite(Uri address)StreamOpenWrite(Uri address, java.lang.String method)voidOpenWriteAsync(Uri address)voidOpenWriteAsync(Uri address, java.lang.String method)voidOpenWriteAsync(Uri address, java.lang.String method, NetObject userToken)voidremoveDownloadDataCompleted(DownloadDataCompletedEventHandler handler)voidremoveDownloadFileCompleted(AsyncCompletedEventHandler handler)voidremoveDownloadProgressChanged(DownloadProgressChangedEventHandler handler)voidremoveDownloadStringCompleted(DownloadStringCompletedEventHandler handler)voidremoveOpenReadCompleted(OpenReadCompletedEventHandler handler)voidremoveOpenWriteCompleted(OpenWriteCompletedEventHandler handler)voidremoveUploadDataCompleted(UploadDataCompletedEventHandler handler)voidremoveUploadFileCompleted(UploadFileCompletedEventHandler handler)voidremoveUploadProgressChanged(UploadProgressChangedEventHandler handler)voidremoveUploadStringCompleted(UploadStringCompletedEventHandler handler)voidremoveUploadValuesCompleted(UploadValuesCompletedEventHandler handler)voidremoveWriteStreamClosed(WriteStreamClosedEventHandler handler)voidsetAllowReadStreamBuffering(boolean AllowReadStreamBuffering)voidsetAllowWriteStreamBuffering(boolean AllowWriteStreamBuffering)voidsetBaseAddress(java.lang.String BaseAddress)voidsetCachePolicy(RequestCachePolicy CachePolicy)voidsetCredentials(ICredentials Credentials)voidsetEncoding(Encoding Encoding)voidsetHeaders(WebHeaderCollection Headers)voidsetJCOInstance(JCObject instance)voidsetProxy(IWebProxy Proxy)voidsetQueryString(NameValueCollection QueryString)voidsetUseDefaultCredentials(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)voidUploadDataAsync(Uri address, byte[] data)voidUploadDataAsync(Uri address, java.lang.String method, byte[] data)voidUploadDataAsync(Uri address, java.lang.String method, byte[] data, NetObject userToken)voidUploadDataAsync(Uri dupParam0, java.lang.String dupParam1, JCORefOut dupParam2)voidUploadDataAsync(Uri dupParam0, java.lang.String dupParam1, JCORefOut dupParam2, NetObject dupParam3)voidUploadDataAsync(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)voidUploadFileAsync(Uri address, java.lang.String fileName)voidUploadFileAsync(Uri address, java.lang.String method, java.lang.String fileName)voidUploadFileAsync(Uri address, java.lang.String method, java.lang.String fileName, NetObject userToken)java.lang.StringUploadString(java.lang.String address, java.lang.String data)java.lang.StringUploadString(java.lang.String address, java.lang.String method, java.lang.String data)java.lang.StringUploadString(Uri address, java.lang.String data)java.lang.StringUploadString(Uri address, java.lang.String method, java.lang.String data)voidUploadStringAsync(Uri address, java.lang.String data)voidUploadStringAsync(Uri address, java.lang.String method, java.lang.String data)voidUploadStringAsync(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)voidUploadValuesAsync(Uri address, java.lang.String method, NameValueCollection data)voidUploadValuesAsync(Uri address, java.lang.String method, NameValueCollection data, NetObject userToken)voidUploadValuesAsync(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.ThrowableInternal 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:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Overrides:
getJCOAssemblyNamein classComponent- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Overrides:
getJCOClassNamein classComponent- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Overrides:
getJCOObjectNamein classComponent- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Overrides:
getJCOInstancein classComponent- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classComponent
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Overrides:
getJCOTypein classComponent- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static WebClient cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoWebClient, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
WebClientinstance- 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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionMissingMethodExceptionWebExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionInvalidCastExceptionCultureNotFoundExceptionMissingMethodExceptionNotImplementedExceptionWebExceptionObjectDisposedExceptionSemaphoreFullException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionMissingMethodExceptionSemaphoreFullExceptionWebException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionMissingMethodExceptionSemaphoreFullExceptionWebException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionMissingMethodExceptionSemaphoreFullExceptionWebException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionMissingMethodExceptionSemaphoreFullExceptionWebException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionMissingMethodExceptionNotImplementedExceptionSemaphoreFullExceptionWebException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionMissingMethodExceptionNotImplementedExceptionSemaphoreFullExceptionWebException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionMemberAccessExceptionCultureNotFoundExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedExceptionObjectDisposedExceptionSemaphoreFullExceptionWebException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionMemberAccessExceptionCultureNotFoundExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedExceptionObjectDisposedExceptionSemaphoreFullExceptionWebException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionWebExceptionIOExceptionOverflowExceptionInvalidCastExceptionMissingMethodExceptionSemaphoreFullException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionWebExceptionIOExceptionInvalidTimeZoneExceptionMissingMethodExceptionTargetInvocationExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionWebExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidTimeZoneExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionObjectDisposedExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionMemberAccessExceptionCultureNotFoundExceptionWebExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidTimeZoneExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedExceptionTaskCanceledExceptionAggregateExceptionObjectDisposedExceptionSemaphoreFullException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionWebExceptionMissingMethodExceptionTargetInvocationExceptionSemaphoreFullException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionWebExceptionMissingMethodExceptionTargetInvocationExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionWebExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionObjectDisposedExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionMemberAccessExceptionCultureNotFoundExceptionWebExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedExceptionTaskCanceledExceptionAggregateExceptionObjectDisposedExceptionSemaphoreFullException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionMissingMethodExceptionTargetInvocationException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionMemberAccessExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionMissingMethodExceptionTargetInvocationException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionMissingMethodExceptionTargetInvocationException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionMemberAccessExceptionCultureNotFoundExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionMissingMethodExceptionWebExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionInvalidCastExceptionCultureNotFoundExceptionMissingMethodExceptionNotImplementedExceptionWebExceptionObjectDisposedExceptionSemaphoreFullException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionMissingMethodExceptionSemaphoreFullExceptionWebException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionMissingMethodExceptionSemaphoreFullExceptionWebException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionMissingMethodExceptionNotImplementedExceptionSemaphoreFullExceptionWebExceptionObjectDisposedExceptionAbandonedMutexException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionMemberAccessExceptionCultureNotFoundExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedExceptionObjectDisposedExceptionSemaphoreFullExceptionWebExceptionAbandonedMutexException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionTaskSchedulerExceptionMulticastNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionIOExceptionInvalidCastExceptionMissingMethodExceptionWebExceptionSemaphoreFullException
-
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.ThrowableArgumentOutOfRangeExceptionInvalidOperationExceptionObjectDisposedExceptionTaskSchedulerExceptionArgumentNullExceptionArgumentExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionOutOfMemoryExceptionNotSupportedExceptionNullReferenceExceptionPathTooLongExceptionIndexOutOfRangeExceptionSecurityExceptionIOExceptionUriFormatExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionWebExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionNotSupportedExceptionNullReferenceExceptionUriFormatExceptionSecurityExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionWebExceptionObjectDisposedExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionSecurityExceptionUriFormatExceptionMemberAccessExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedExceptionWebExceptionTaskCanceledExceptionAggregateExceptionObjectDisposedExceptionSemaphoreFullException
-
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.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSecurityExceptionUriFormatExceptionOutOfMemoryExceptionPathTooLongExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionInvalidCastExceptionMulticastNotSupportedExceptionIOExceptionMissingMethodExceptionTargetInvocationExceptionWebExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionUriFormatExceptionMemberAccessExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedExceptionWebExceptionTaskCanceledExceptionAggregateExceptionObjectDisposedExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionNotSupportedExceptionNullReferenceExceptionPathTooLongExceptionIndexOutOfRangeExceptionSecurityExceptionIOExceptionUriFormatExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionWebExceptionObjectDisposedExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionSecurityExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionUriFormatExceptionMemberAccessExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedExceptionWebExceptionTaskCanceledExceptionAggregateExceptionObjectDisposedExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionNotSupportedExceptionNullReferenceExceptionUriFormatExceptionSecurityExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionObjectDisposedExceptionAbandonedMutexExceptionWebExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionSecurityExceptionUriFormatExceptionMemberAccessExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedExceptionObjectDisposedExceptionAbandonedMutexExceptionWebExceptionTaskCanceledExceptionAggregateExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionNotSupportedExceptionNullReferenceExceptionUriFormatExceptionSecurityExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionSecurityExceptionUriFormatExceptionMemberAccessExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionMemberAccessExceptionCultureNotFoundExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionWebException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionWebException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionWebException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionWebException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionMemberAccessExceptionCultureNotFoundExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedExceptionWebExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionMemberAccessExceptionCultureNotFoundExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedExceptionWebExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionWebExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidTimeZoneExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionWebExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidTimeZoneExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionMemberAccessExceptionCultureNotFoundExceptionWebExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidTimeZoneExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedExceptionSemaphoreFullException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionWebExceptionObjectDisposedExceptionAbandonedMutexException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionWebExceptionObjectDisposedExceptionAbandonedMutexException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionMemberAccessExceptionCultureNotFoundExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedExceptionWebExceptionSemaphoreFullExceptionObjectDisposedExceptionAbandonedMutexException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionWebExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionNotSupportedExceptionWebExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionUriFormatExceptionSecurityExceptionMemberAccessExceptionCultureNotFoundExceptionWebExceptionInvalidCastExceptionMissingMethodExceptionNotImplementedExceptionSemaphoreFullException
-
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.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentException
-
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.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionFormatExceptionInvalidOperationExceptionNotSupportedExceptionIndexOutOfRangeExceptionConfigurationExceptionSecurityExceptionOutOfMemoryExceptionTypeLoadExceptionConfigurationErrorsExceptionInvalidCastException
-
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.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionSecurityExceptionMemberAccessExceptionNullReferenceExceptionConfigurationExceptionUriFormatExceptionOutOfMemoryException
-
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.ThrowableArgumentNullException
-
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
-
-