Dev2.FileSystem.Get C# (CSharp) 메소드

Get() 공개 메소드

public Get ( Uri path, string userName = "", string password = "" ) : Stream
path System.Uri
userName string
password string
리턴 Stream
        public Stream Get(Uri path, string userName = "", string password = "")
        {
            return new FileStream(path.LocalPath, FileMode.Open, FileAccess.Read, FileShare.Read);
        }