ALFA.Shared.AzureFileStoreFile.Read C# (CSharp) Method

Read() public method

Read the entire contents of the file into the given Stream.
public Read ( Stream Stream ) : void
Stream Stream Supplies the Stream to read the entire /// contents of the file into.
return void
        public void Read(Stream Stream)
        {
            Blob.DownloadToStream(Stream);
        }