Method | Description | |
---|---|---|
Execute ( this url ) : |
opens the URL in a browser
|
|
Read ( this url, |
Reads the text content of a URL
|
|
Read ( this url, string userName = "", string password = "", string domain = "", string authenticationType = "" ) : string |
Reads the text content of a URL
|
|
ReadBinary ( this url, string userName = "", string password = "", string domain = "", string authenticationType = "" ) : byte[] |
Reads the content of a URL
|
public static Execute ( this url ) : |
||
url | this | URL to execute |
return |
public static Read ( this url, |
||
url | this | The Uri to read the content of |
client | WebClient used to load the data | |
userName | string | User name used in network credentials |
password | string | Password used in network credentials |
domain | string | Domain to use in network credentials |
authenticationType | string | Authentication type to use in network credentials |
return | Stream |
public static Read ( this url, string userName = "", string password = "", string domain = "", string authenticationType = "" ) : string | ||
url | this | Uri to read the content of |
userName | string | User name used in network credentials |
password | string | Password used in network credentials |
domain | string | Domain to use in network credentials |
authenticationType | string | Authentication type to use in network credentials |
return | string |
public static ReadBinary ( this url, string userName = "", string password = "", string domain = "", string authenticationType = "" ) : byte[] | ||
url | this | Uri to read the content of |
userName | string | User name used in network credentials |
password | string | Password used in network credentials |
domain | string | Domain to use in network credentials |
authenticationType | string | Authentication type to use in network credentials |
return | byte[] |