AzureBlobFileSystem.AzureBlobStorageProvider.TrySaveStream C# (CSharp) Method

TrySaveStream() public method

public TrySaveStream ( string path, Stream inputStream ) : bool
path string
inputStream Stream
return bool
        public bool TrySaveStream(string path, Stream inputStream)
        {
            try
            {
                SaveStream(path, inputStream);
            }
            catch
            {
                return false;
            }

            return true;
        }