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);
        }