public class WebClient extends Component
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Net.WebClient
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: System.Net.WebClient, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
|
static java.lang.String |
assemblyShortName
Assembly name: System.Net.WebClient
|
static java.lang.String |
className
Qualified class name: System.Net.WebClient
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
WebClient() |
WebClient(java.lang.Object instance)
Internal constructor.
|
| Modifier and Type | Method and 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 the
IJCOBridgeReflected instance into WebClient, 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 name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
IWebProxy |
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 dupParam0,
JCORefOut dupParam1) |
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(Uri address,
byte[] data) |
byte[] |
UploadData(Uri dupParam0,
JCORefOut dupParam1) |
byte[] |
UploadData(Uri address,
java.lang.String method,
byte[] data) |
byte[] |
UploadData(Uri dupParam0,
java.lang.String dupParam1,
JCORefOut dupParam2) |
void |
UploadDataAsync(Uri address,
byte[] data) |
void |
UploadDataAsync(Uri dupParam0,
JCORefOut dupParam1) |
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) |
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,
NameValueCollection data) |
byte[] |
UploadValues(java.lang.String address,
java.lang.String method,
NameValueCollection data) |
byte[] |
UploadValues(Uri address,
NameValueCollection data) |
byte[] |
UploadValues(Uri address,
java.lang.String method,
NameValueCollection data) |
void |
UploadValuesAsync(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) |
addDisposed, close, Dispose, getContainer, getSite, removeDisposed, setSiteGetLifetimeService, InitializeLifetimeServicepublic static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public WebClient()
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionpublic WebClient(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic void addDownloadDataCompleted(DownloadDataCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void addDownloadFileCompleted(AsyncCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void addDownloadProgressChanged(DownloadProgressChangedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void addDownloadStringCompleted(DownloadStringCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void addOpenReadCompleted(OpenReadCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void addOpenWriteCompleted(OpenWriteCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void addUploadDataCompleted(UploadDataCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void addUploadFileCompleted(UploadFileCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void addUploadProgressChanged(UploadProgressChangedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void addUploadStringCompleted(UploadStringCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void addUploadValuesCompleted(UploadValuesCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void addWriteStreamClosed(WriteStreamClosedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void CancelAsync()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionpublic static WebClient cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into WebClient, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedWebClient instancejava.lang.Throwable - in case of error during cast operationpublic byte[] DownloadData(java.lang.String address)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
PlatformNotSupportedException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
CultureNotFoundException,
UriFormatException,
WebException
public byte[] DownloadData(Uri address) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException, WebException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionUriFormatExceptionOutOfMemoryExceptionUnreachableExceptionWebExceptionpublic void DownloadDataAsync(Uri address) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException
public void DownloadDataAsync(Uri address, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionpublic void DownloadFile(java.lang.String address,
java.lang.String fileName)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
PlatformNotSupportedException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
CultureNotFoundException,
UriFormatException,
SerializationException,
WebException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionPlatformNotSupportedExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionSerializationExceptionWebExceptionpublic void DownloadFile(Uri address, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, OutOfMemoryException, SerializationException, NullReferenceException, ExternalException, CultureNotFoundException, UriFormatException, WebException, FormatException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionOutOfMemoryExceptionSerializationExceptionNullReferenceExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionWebExceptionFormatExceptionpublic void DownloadFileAsync(Uri address, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, SerializationException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, UnreachableException, OutOfMemoryException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionPlatformNotSupportedExceptionSerializationExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionUriFormatExceptionUnreachableExceptionOutOfMemoryExceptionpublic void DownloadFileAsync(Uri address, java.lang.String fileName, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, OutOfMemoryException, SerializationException, NullReferenceException, ExternalException, CultureNotFoundException, UriFormatException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionOutOfMemoryExceptionSerializationExceptionNullReferenceExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionpublic Task DownloadFileTaskAsync(java.lang.String address, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException, MulticastNotSupportedException, SerializationException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionPlatformNotSupportedExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionMulticastNotSupportedExceptionSerializationExceptionpublic Task DownloadFileTaskAsync(Uri address, java.lang.String fileName) throws java.lang.Throwable, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentException, ArgumentNullException, IndexOutOfRangeException, MulticastNotSupportedException, SerializationException, InvalidOperationException, UriFormatException, UnreachableException, OutOfMemoryException, RankException, ArrayTypeMismatchException
java.lang.ThrowableArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionArgumentExceptionArgumentNullExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionSerializationExceptionInvalidOperationExceptionUriFormatExceptionUnreachableExceptionOutOfMemoryExceptionRankExceptionArrayTypeMismatchExceptionpublic java.lang.String DownloadString(java.lang.String address)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
PlatformNotSupportedException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
CultureNotFoundException,
UriFormatException,
WebException
public java.lang.String DownloadString(Uri address) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException, WebException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionUriFormatExceptionOutOfMemoryExceptionUnreachableExceptionWebExceptionpublic void DownloadStringAsync(Uri address) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException
public void DownloadStringAsync(Uri address, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionpublic boolean getAllowReadStreamBuffering()
throws java.lang.Throwable
java.lang.Throwablepublic boolean getAllowWriteStreamBuffering()
throws java.lang.Throwable
java.lang.Throwablepublic java.lang.String getBaseAddress()
throws java.lang.Throwable,
PlatformNotSupportedException,
NotSupportedException,
ArgumentException,
CultureNotFoundException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
ArgumentNullException,
ArgumentOutOfRangeException,
InvalidOperationException,
UriFormatException,
UnreachableException
java.lang.ThrowablePlatformNotSupportedExceptionNotSupportedExceptionArgumentExceptionCultureNotFoundExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionArgumentNullExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionUriFormatExceptionUnreachableExceptionpublic RequestCachePolicy getCachePolicy() throws java.lang.Throwable
java.lang.Throwablepublic ICredentials getCredentials() throws java.lang.Throwable
java.lang.Throwablepublic Encoding getEncoding() throws java.lang.Throwable
java.lang.Throwablepublic WebHeaderCollection getHeaders() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentExceptionpublic boolean getIsBusy()
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException
public java.lang.String getJCOAssemblyName()
IJCOBridgeReflectedgetJCOAssemblyName in interface IJCOBridgeReflectedgetJCOAssemblyName in class ComponentString representing the Fullname of reflected Assemblypublic java.lang.String getJCOClassName()
IJCOBridgeReflectedgetJCOClassName in interface IJCOBridgeReflectedgetJCOClassName in class ComponentString representing the Fullname of reflected Classpublic java.lang.Object getJCOInstance()
IJCOBridgeReflectedgetJCOInstance in interface IJCOBridgeReflectedgetJCOInstance in class ComponentObject representing the CLR instance of the instantiated Classpublic java.lang.String getJCOObjectName()
IJCOBridgeReflectedgetJCOObjectName in interface IJCOBridgeReflectedgetJCOObjectName in class ComponentString representing the name used to allocated the object
in CLR contextpublic JCType getJCOType()
IJCOBridgeReflectedgetJCOType in interface IJCOBridgeReflectedgetJCOType in class ComponentJCType representing the CLR Type of the instantiated Classpublic IWebProxy getProxy() throws java.lang.Throwable, InvalidOperationException, PlatformNotSupportedException, NullReferenceException, NotSupportedException
java.lang.ThrowableInvalidOperationExceptionPlatformNotSupportedExceptionNullReferenceExceptionNotSupportedExceptionpublic NameValueCollection getQueryString() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentExceptionpublic WebHeaderCollection getResponseHeaders() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException
public boolean getUseDefaultCredentials()
throws java.lang.Throwable
java.lang.Throwablepublic Stream OpenRead(java.lang.String address) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException, WebException
public Stream OpenRead(Uri address) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException, WebException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionWebExceptionpublic void OpenReadAsync(Uri address) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException
public void OpenReadAsync(Uri address, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionpublic Stream OpenWrite(java.lang.String address) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException, WebException
public Stream OpenWrite(java.lang.String address, java.lang.String method) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException, WebException
public Stream OpenWrite(Uri address) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException, WebException
public Stream OpenWrite(Uri address, java.lang.String method) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException, WebException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionWebExceptionpublic void OpenWriteAsync(Uri address) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException
public void OpenWriteAsync(Uri address, java.lang.String method) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException
public void OpenWriteAsync(Uri address, java.lang.String method, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionpublic void removeDownloadDataCompleted(DownloadDataCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void removeDownloadFileCompleted(AsyncCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void removeDownloadProgressChanged(DownloadProgressChangedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void removeDownloadStringCompleted(DownloadStringCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void removeOpenReadCompleted(OpenReadCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void removeOpenWriteCompleted(OpenWriteCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void removeUploadDataCompleted(UploadDataCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void removeUploadFileCompleted(UploadFileCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void removeUploadProgressChanged(UploadProgressChangedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void removeUploadStringCompleted(UploadStringCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void removeUploadValuesCompleted(UploadValuesCompletedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void removeWriteStreamClosed(WriteStreamClosedEventHandler handler) throws java.lang.Throwable
java.lang.Throwablepublic void setAllowReadStreamBuffering(boolean AllowReadStreamBuffering)
throws java.lang.Throwable
java.lang.Throwablepublic void setAllowWriteStreamBuffering(boolean AllowWriteStreamBuffering)
throws java.lang.Throwable
java.lang.Throwablepublic void setBaseAddress(java.lang.String BaseAddress)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
PlatformNotSupportedException,
IndexOutOfRangeException,
FormatException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
CultureNotFoundException,
UnreachableException,
UriFormatException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionFormatExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUnreachableExceptionUriFormatExceptionpublic void setCachePolicy(RequestCachePolicy CachePolicy) throws java.lang.Throwable
java.lang.Throwablepublic void setCredentials(ICredentials Credentials) throws java.lang.Throwable
java.lang.Throwablepublic void setEncoding(Encoding Encoding) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
public void setHeaders(WebHeaderCollection Headers) throws java.lang.Throwable
java.lang.Throwablepublic void setJCOInstance(JCObject instance)
setJCOInstance in class Componentpublic void setProxy(IWebProxy Proxy) throws java.lang.Throwable
java.lang.Throwablepublic void setQueryString(NameValueCollection QueryString) throws java.lang.Throwable
java.lang.Throwablepublic void setUseDefaultCredentials(boolean UseDefaultCredentials)
throws java.lang.Throwable
java.lang.Throwablepublic byte[] UploadData(java.lang.String address,
byte[] data)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
PlatformNotSupportedException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
CultureNotFoundException,
UriFormatException,
WebException
public byte[] UploadData(java.lang.String dupParam0,
JCORefOut dupParam1)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
PlatformNotSupportedException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
CultureNotFoundException,
UriFormatException,
WebException
public byte[] UploadData(java.lang.String address,
java.lang.String method,
byte[] data)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
PlatformNotSupportedException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
CultureNotFoundException,
UriFormatException,
WebException
public byte[] UploadData(java.lang.String dupParam0,
java.lang.String dupParam1,
JCORefOut dupParam2)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
PlatformNotSupportedException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
CultureNotFoundException,
UriFormatException,
WebException
public byte[] UploadData(Uri address, byte[] data) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException, WebException
public byte[] UploadData(Uri dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException, WebException
public byte[] UploadData(Uri address, java.lang.String method, byte[] data) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException, WebException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionWebExceptionpublic byte[] UploadData(Uri dupParam0, java.lang.String dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException, WebException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionWebExceptionpublic void UploadDataAsync(Uri address, byte[] data) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException
public void UploadDataAsync(Uri dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException
public void UploadDataAsync(Uri address, java.lang.String method, byte[] data) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException
public void UploadDataAsync(Uri address, java.lang.String method, byte[] data, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionpublic void UploadDataAsync(Uri dupParam0, java.lang.String dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException
public void UploadDataAsync(Uri dupParam0, java.lang.String dupParam1, JCORefOut dupParam2, NetObject dupParam3) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionpublic byte[] UploadFile(java.lang.String address,
java.lang.String fileName)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
PlatformNotSupportedException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
CultureNotFoundException,
UriFormatException,
WebException,
OverflowException,
FormatException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionPlatformNotSupportedExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionWebExceptionOverflowExceptionFormatExceptionpublic byte[] UploadFile(java.lang.String address,
java.lang.String method,
java.lang.String fileName)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
PlatformNotSupportedException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
CultureNotFoundException,
UriFormatException,
WebException,
SerializationException,
InvalidTimeZoneException,
OverflowException,
FormatException,
IndexOutOfRangeException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionPlatformNotSupportedExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionWebExceptionSerializationExceptionInvalidTimeZoneExceptionOverflowExceptionFormatExceptionIndexOutOfRangeExceptionpublic byte[] UploadFile(Uri address, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException, WebException, SerializationException, InvalidTimeZoneException, OverflowException, FormatException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionPlatformNotSupportedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionUriFormatExceptionOutOfMemoryExceptionUnreachableExceptionWebExceptionSerializationExceptionInvalidTimeZoneExceptionOverflowExceptionFormatExceptionpublic byte[] UploadFile(Uri address, java.lang.String method, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException, WebException, SerializationException, InvalidTimeZoneException, OverflowException, SecurityException, FormatException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionWebExceptionSerializationExceptionInvalidTimeZoneExceptionOverflowExceptionSecurityExceptionFormatExceptionpublic void UploadFileAsync(Uri address, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException, WebException, SerializationException, InvalidTimeZoneException, OverflowException, FormatException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionPlatformNotSupportedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionUriFormatExceptionOutOfMemoryExceptionUnreachableExceptionWebExceptionSerializationExceptionInvalidTimeZoneExceptionOverflowExceptionFormatExceptionpublic void UploadFileAsync(Uri address, java.lang.String method, java.lang.String fileName) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException, WebException, SerializationException, InvalidTimeZoneException, OverflowException, FormatException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionPlatformNotSupportedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionUriFormatExceptionOutOfMemoryExceptionUnreachableExceptionWebExceptionSerializationExceptionInvalidTimeZoneExceptionOverflowExceptionFormatExceptionpublic void UploadFileAsync(Uri address, java.lang.String method, java.lang.String fileName, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException, WebException, SerializationException, InvalidTimeZoneException, OverflowException, SecurityException, FormatException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionWebExceptionSerializationExceptionInvalidTimeZoneExceptionOverflowExceptionSecurityExceptionFormatExceptionpublic java.lang.String UploadString(java.lang.String address,
java.lang.String data)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
PlatformNotSupportedException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
CultureNotFoundException,
UriFormatException,
WebException
public java.lang.String UploadString(java.lang.String address,
java.lang.String method,
java.lang.String data)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
PlatformNotSupportedException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
CultureNotFoundException,
UriFormatException,
WebException
public java.lang.String UploadString(Uri address, java.lang.String data) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException, WebException
public java.lang.String UploadString(Uri address, java.lang.String method, java.lang.String data) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException, WebException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionWebExceptionpublic void UploadStringAsync(Uri address, java.lang.String data) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException
public void UploadStringAsync(Uri address, java.lang.String method, java.lang.String data) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException
public void UploadStringAsync(Uri address, java.lang.String method, java.lang.String data, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionpublic byte[] UploadValues(java.lang.String address,
NameValueCollection data)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
PlatformNotSupportedException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
CultureNotFoundException,
UriFormatException,
WebException,
IndexOutOfRangeException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionPlatformNotSupportedExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionWebExceptionIndexOutOfRangeExceptionpublic byte[] UploadValues(java.lang.String address,
java.lang.String method,
NameValueCollection data)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
PlatformNotSupportedException,
NullReferenceException,
OutOfMemoryException,
ExternalException,
CultureNotFoundException,
UriFormatException,
WebException,
IndexOutOfRangeException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionPlatformNotSupportedExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionWebExceptionIndexOutOfRangeExceptionpublic byte[] UploadValues(Uri address, NameValueCollection data) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException, WebException
public byte[] UploadValues(Uri address, java.lang.String method, NameValueCollection data) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException, WebException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionWebExceptionpublic void UploadValuesAsync(Uri address, NameValueCollection data) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException, WebException
public void UploadValuesAsync(Uri address, java.lang.String method, NameValueCollection data) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, UnreachableException, WebException
public void UploadValuesAsync(Uri address, java.lang.String method, NameValueCollection data, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException, OutOfMemoryException, ExternalException, CultureNotFoundException, UriFormatException, WebException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionNullReferenceExceptionOutOfMemoryExceptionExternalExceptionCultureNotFoundExceptionUriFormatExceptionWebException