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