Dev2.FileSystem.Get C# (CSharp) Method

Get() public method

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