Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ DownloadString() [2/2]

string System.Net.WebClient.DownloadString ( Uri address)
inline

Definition at line 913 of file WebClient.cs.

914 {
915 ArgumentNullException.ThrowIfNull(address, "address");
917 try
918 {
919 WebRequest request;
920 byte[] data = DownloadDataInternal(address, out request);
921 return GetStringUsingEncoding(request, data);
922 }
923 finally
924 {
925 EndOperation();
926 }
927 }
byte[] DownloadDataInternal(Uri address, out WebRequest request)
Definition WebClient.cs:492
string GetStringUsingEncoding(WebRequest request, byte[] data)

References System.Net.WebClient.DownloadDataInternal(), System.Net.WebClient.EndOperation(), System.Net.WebClient.GetStringUsingEncoding(), System.Net.WebClient.StartOperation(), and System.ArgumentNullException.ThrowIfNull().