BlobUtility.Program.CreateBlobRequestOptionsWithMaxTimeout C# (CSharp) Method

CreateBlobRequestOptionsWithMaxTimeout() static private method

static private CreateBlobRequestOptionsWithMaxTimeout ( ) : Microsoft.WindowsAzure.Storage.Blob.BlobRequestOptions
return Microsoft.WindowsAzure.Storage.Blob.BlobRequestOptions
        static BlobRequestOptions CreateBlobRequestOptionsWithMaxTimeout()
        {
            // There appears to be a maximum value we can supply for a requested timeout
            return new BlobRequestOptions {ServerTimeout = TimeSpan.FromHours(6)};
        }