C# 클래스 Utilities.IO.Extensions.UriExtensions

Uri Extension methods
파일 보기 프로젝트 열기: feanz/Utilities

공개 메소드들

메소드 설명
Read ( this uri, WebClient client, string userName = "", string password = "" ) : Stream

Reads the text content of a URI

Read ( this uri, string userName = "", string password = "" ) : string

Reads the text content of a URI

ReadBinary ( this uri, string userName = "", string password = "" ) : byte[]

Reads the content of a URI

메소드 상세

Read() 공개 정적인 메소드

Reads the text content of a URI
public static Read ( this uri, WebClient client, string userName = "", string password = "" ) : Stream
uri this The Uri to read the content of
client System.Net.WebClient WebClient used to load the data
userName string User name used in network credentials
password string Password used in network credentials
리턴 Stream

Read() 공개 정적인 메소드

Reads the text content of a URI
public static Read ( this uri, string userName = "", string password = "" ) : string
uri this Uri to read the content of
userName string User name used in network credentials
password string Password used in network credentials
리턴 string

ReadBinary() 공개 정적인 메소드

Reads the content of a URI
public static ReadBinary ( this uri, string userName = "", string password = "" ) : byte[]
uri this Uri to read the content of
userName string User name used in network credentials
password string Password used in network credentials
리턴 byte[]