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

Write() public method

Replace the contents of the file with the given Stream.
public Write ( Stream Stream ) : void
Stream Stream Supplies the Stream to write into the file. /// The original contents of the file are replaced.
return void
        public void Write(Stream Stream)
        {
            Blob.UploadFromStream(Stream);
        }