/* Copyright 2015-present MongoDB Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using System.Collections.Generic;
using MongoDB.Bson;
using MongoDB.Driver.Core.Misc;
namespace MongoDB.Driver.GridFS
{
///
/// Represents options for a GridFS upload operation.
///
public class GridFSUploadOptions
{
// fields
private IEnumerable _aliases;
private int? _batchSize;
private int? _chunkSizeBytes;
private string _contentType;
private bool _disableMD5 = false;
private BsonDocument _metadata;
// properties
///
/// Gets or sets the aliases.
///
///
/// The aliases.
///
[Obsolete("Place aliases inside metadata instead.")]
public IEnumerable Aliases
{
get { return _aliases; }
set { _aliases = value; }
}
///
/// Gets or sets the batch size.
///
///
/// The batch size.
///
public int? BatchSize
{
get { return _batchSize; }
set
{
_batchSize = Ensure.IsNullOrGreaterThanZero(value, nameof(value));
}
}
///
/// Gets or sets the chunk size in bytes.
///
///
/// The chunk size in bytes.
///
public int? ChunkSizeBytes
{
get { return _chunkSizeBytes; }
set { _chunkSizeBytes = Ensure.IsNullOrGreaterThanZero(value, nameof(value)); }
}
///
/// Gets or sets the type of the content.
///
///
/// The type of the content.
///
[Obsolete("Place contentType inside metadata instead.")]
public string ContentType
{
get { return _contentType; }
set { _contentType = Ensure.IsNullOrNotEmpty(value, nameof(value)); }
}
///
/// Gets or sets whether to disable MD5 checksum computation when uploading a GridFS file.
///
///
/// Whether or not MD5 checksum computation is disabled when uploading a GridFS file.
///
public bool DisableMD5
{
get { return _disableMD5; }
set { _disableMD5 = value; }
}
///
/// Gets or sets the metadata.
///
///
/// The metadata.
///
public BsonDocument Metadata
{
get { return _metadata; }
set { _metadata = value; }
}
}
}