ALFA.Shared.AzureFileStoreFile.Write C# (CSharp) Метод

Write() публичный Метод

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.
Результат void
        public void Write(Stream Stream)
        {
            Blob.UploadFromStream(Stream);
        }