Mono Class Library: Overview

System.Net.WebClient: Members

The members of System.Net.WebClient are listed below.

See Also: Inherited members from System.ComponentModel.Component

Public Constructors

Constructs a new instance of the System.Net.WebClient class.

Public Properties

BaseAddressstring. Gets or sets the base URI for requests made by a System.Net.WebClient .
CachePolicySystem.Net.Cache.RequestCachePolicy. Documentation for this section has not yet been entered.
CredentialsICredentials. Gets or sets the network credentials used to authenticate the client making the current request.
EncodingSystem.Text.Encoding. Documentation for this section has not yet been entered.
HeadersWebHeaderCollection. Gets or sets a collection of header name/value pairs associated with the request.
[read-only]
IsBusybool. Documentation for this section has not yet been entered.
ProxyIWebProxy. Documentation for this section has not yet been entered.
QueryStringSystem.Collections.Specialized.NameValueCollection. Gets or sets a collection of query name/value pairs associated with the request.
[read-only]
ResponseHeadersWebHeaderCollection. Gets a collection of header name/value pairs associated with the response.
UseDefaultCredentialsbool. Documentation for this section has not yet been entered.

Public Methods

CancelAsync()
Documentation for this section has not yet been entered.
DownloadData(string) : byte[]
Downloads data from the resource identified by the specified URI.
DownloadData(Uri) : byte[]
Documentation for this section has not yet been entered.
DownloadDataAsync(Uri)
Documentation for this section has not yet been entered.
DownloadDataAsync(Uri, object)
Documentation for this section has not yet been entered.
DownloadFile(string, string)
Downloads data from the resource identified by the specified URI, and writes the data to the specified file .
DownloadFile(Uri, string)
Documentation for this section has not yet been entered.
DownloadFileAsync(Uri, string)
Documentation for this section has not yet been entered.
DownloadFileAsync(Uri, string, object)
Documentation for this section has not yet been entered.
DownloadString(string) : string
Documentation for this section has not yet been entered.
DownloadString(Uri) : string
Documentation for this section has not yet been entered.
DownloadStringAsync(Uri)
Documentation for this section has not yet been entered.
DownloadStringAsync(Uri, object)
Documentation for this section has not yet been entered.
OpenRead(string) : System.IO.Stream
Opens a readable System.IO.Stream containing the data downloaded from the resource identified by the specified URI.
OpenRead(Uri) : System.IO.Stream
Documentation for this section has not yet been entered.
OpenReadAsync(Uri)
Documentation for this section has not yet been entered.
OpenReadAsync(Uri, object)
Documentation for this section has not yet been entered.
OpenWrite(string) : System.IO.Stream
Opens a System.IO.Stream for writing data to the resource identified by the specified URI.
OpenWrite(Uri) : System.IO.Stream
Documentation for this section has not yet been entered.
OpenWrite(string, string) : System.IO.Stream
Opens a System.IO.Stream for writing data to the resource identified by the specified URI using the specified protocol method.
OpenWrite(Uri, string) : System.IO.Stream
Documentation for this section has not yet been entered.
OpenWriteAsync(Uri)
Documentation for this section has not yet been entered.
OpenWriteAsync(Uri, string)
Documentation for this section has not yet been entered.
OpenWriteAsync(Uri, string, object)
Documentation for this section has not yet been entered.
UploadData(string, byte[]) : byte[]
Uploads the specified data to the resource identified by the specified URI.
UploadData(Uri, byte[]) : byte[]
Documentation for this section has not yet been entered.
UploadData(string, string, byte[]) : byte[]
Uploads the specified data to the resource identified by the specified URI using the specified protocol method.
UploadData(Uri, string, byte[]) : byte[]
Documentation for this section has not yet been entered.
UploadDataAsync(Uri, byte[])
Documentation for this section has not yet been entered.
UploadDataAsync(Uri, string, byte[])
Documentation for this section has not yet been entered.
UploadDataAsync(Uri, string, byte[], object)
Documentation for this section has not yet been entered.
UploadFile(string, string) : byte[]
Uploads the specified local file to the resource identified by the specified URI.
UploadFile(Uri, string) : byte[]
Documentation for this section has not yet been entered.
UploadFile(string, string, string) : byte[]
Uploads the specified local file using the specified protocol method to the resource identified by the specified URI .
UploadFile(Uri, string, string) : byte[]
Documentation for this section has not yet been entered.
UploadFileAsync(Uri, string)
Documentation for this section has not yet been entered.
UploadFileAsync(Uri, string, string)
Documentation for this section has not yet been entered.
UploadFileAsync(Uri, string, string, object)
Documentation for this section has not yet been entered.
UploadString(string, string) : string
Documentation for this section has not yet been entered.
UploadString(Uri, string) : string
Documentation for this section has not yet been entered.
UploadString(string, string, string) : string
Documentation for this section has not yet been entered.
UploadString(Uri, string, string) : string
Documentation for this section has not yet been entered.
UploadStringAsync(Uri, string)
Documentation for this section has not yet been entered.
UploadStringAsync(Uri, string, string)
Documentation for this section has not yet been entered.
UploadStringAsync(Uri, string, string, object)
Documentation for this section has not yet been entered.
UploadValues(string, System.Collections.Specialized.NameValueCollection) : byte[]
Uploads the specified name/value collection to the specified resource.
UploadValues(Uri, System.Collections.Specialized.NameValueCollection) : byte[]
Documentation for this section has not yet been entered.
UploadValues(string, string, System.Collections.Specialized.NameValueCollection) : byte[]
Uploads the specified name/value collection to the specified resource using the specified method.
UploadValues(Uri, string, System.Collections.Specialized.NameValueCollection) : byte[]
Documentation for this section has not yet been entered.
UploadValuesAsync(Uri, System.Collections.Specialized.NameValueCollection)
Documentation for this section has not yet been entered.
UploadValuesAsync(Uri, string, System.Collections.Specialized.NameValueCollection)
Documentation for this section has not yet been entered.
UploadValuesAsync(Uri, string, System.Collections.Specialized.NameValueCollection, object)
Documentation for this section has not yet been entered.

Protected Methods

GetWebRequest(Uri) : WebRequest
Documentation for this section has not yet been entered.
GetWebResponse(WebRequest) : WebResponse
Documentation for this section has not yet been entered.
GetWebResponse(WebRequest, IAsyncResult) : WebResponse
Documentation for this section has not yet been entered.
OnDownloadDataCompleted(DownloadDataCompletedEventArgs)
Documentation for this section has not yet been entered.
OnDownloadFileCompleted(System.ComponentModel.AsyncCompletedEventArgs)
Documentation for this section has not yet been entered.
OnDownloadProgressChanged(DownloadProgressChangedEventArgs)
Documentation for this section has not yet been entered.
OnDownloadStringCompleted(DownloadStringCompletedEventArgs)
Documentation for this section has not yet been entered.
OnOpenReadCompleted(OpenReadCompletedEventArgs)
Documentation for this section has not yet been entered.
OnOpenWriteCompleted(OpenWriteCompletedEventArgs)
Documentation for this section has not yet been entered.
OnUploadDataCompleted(UploadDataCompletedEventArgs)
Documentation for this section has not yet been entered.
OnUploadFileCompleted(UploadFileCompletedEventArgs)
Documentation for this section has not yet been entered.
OnUploadProgressChanged(UploadProgressChangedEventArgs)
Documentation for this section has not yet been entered.
OnUploadStringCompleted(UploadStringCompletedEventArgs)
Documentation for this section has not yet been entered.
OnUploadValuesCompleted(UploadValuesCompletedEventArgs)
Documentation for this section has not yet been entered.

Public Events

DownloadDataCompletedDocumentation for this section has not yet been entered.
DownloadFileCompletedDocumentation for this section has not yet been entered.
DownloadProgressChangedDocumentation for this section has not yet been entered.
DownloadStringCompletedDocumentation for this section has not yet been entered.
OpenReadCompletedDocumentation for this section has not yet been entered.
OpenWriteCompletedDocumentation for this section has not yet been entered.
UploadDataCompletedDocumentation for this section has not yet been entered.
UploadFileCompletedDocumentation for this section has not yet been entered.
UploadProgressChangedDocumentation for this section has not yet been entered.
UploadStringCompletedDocumentation for this section has not yet been entered.
UploadValuesCompletedDocumentation for this section has not yet been entered.