本文整理匯總了C#中MongoDB.Driver.GridFS.MongoGridFSSettings.Freeze方法的典型用法代碼示例。如果您正苦於以下問題:C# MongoGridFSSettings.Freeze方法的具體用法?C# MongoGridFSSettings.Freeze怎麽用?C# MongoGridFSSettings.Freeze使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類MongoDB.Driver.GridFS.MongoGridFSSettings
的用法示例。
在下文中一共展示了MongoGridFSSettings.Freeze方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: TestFreeze
public void TestFreeze()
{
var settings = new MongoGridFSSettings();
Assert.IsFalse(settings.IsFrozen);
settings.Freeze();
Assert.IsTrue(settings.IsFrozen);
settings.Freeze(); // test that it's OK to call Freeze more than once
Assert.IsTrue(settings.IsFrozen);
Assert.Throws<InvalidOperationException>(() => settings.DefaultChunkSize = 64 * 1024);
Assert.Throws<InvalidOperationException>(() => settings.Root = "root");
Assert.Throws<InvalidOperationException>(() => settings.SafeMode = SafeMode.True);
}
示例2: MongoGridFS
/// <summary>
/// Initializes a new instance of the MongoGridFS class.
/// </summary>
/// <param name="database">The database containing the GridFS collections.</param>
/// <param name="settings">The GridFS settings.</param>
public MongoGridFS(
MongoDatabase database,
MongoGridFSSettings settings
) {
this.database = database;
this.settings = settings.Freeze();
this.chunks = database[settings.ChunksCollectionName, settings.SafeMode];
this.files = database[settings.FilesCollectionName, settings.SafeMode];
}
示例3: MongoGridFS
/// <summary>
/// Initializes a new instance of the MongoGridFS class.
/// </summary>
/// <param name="database">The database containing the GridFS collections.</param>
/// <param name="settings">The GridFS settings.</param>
public MongoGridFS(MongoDatabase database, MongoGridFSSettings settings)
{
settings = settings.Clone();
settings.ApplyDefaultValues(database.Settings);
settings.Freeze();
_database = database;
_settings = settings;
_chunks = database.GetCollection(settings.Root + ".chunks");
_files = database.GetCollection(settings.Root + ".files");
}
示例4: MongoGridFS
/// <summary>
/// Initializes a new instance of the <see cref="MongoGridFS"/> class.
/// </summary>
/// <param name="server">The server.</param>
/// <param name="databaseName">The name of the database.</param>
/// <param name="settings">The settings.</param>
public MongoGridFS(MongoServer server, string databaseName, MongoGridFSSettings settings)
{
if (server == null)
{
throw new ArgumentNullException("server");
}
if (databaseName == null)
{
throw new ArgumentNullException("databaseName");
}
if (settings == null)
{
throw new ArgumentNullException("settings");
}
settings = settings.Clone();
settings.ApplyDefaultValues(server.Settings);
settings.Freeze();
_server = server;
_databaseName = databaseName;
_settings = settings;
}
示例5: TestFreeze
public void TestFreeze()
{
var settings = new MongoGridFSSettings();
Assert.IsFalse(settings.IsFrozen);
settings.Freeze();
Assert.IsTrue(settings.IsFrozen);
settings.Freeze(); // test that it's OK to call Freeze more than once
Assert.IsTrue(settings.IsFrozen);
Assert.Throws<InvalidOperationException>(() => settings.ChunkSize = 64 * 1024);
Assert.Throws<InvalidOperationException>(() => settings.Root = "root");
Assert.Throws<InvalidOperationException>(() => settings.UpdateMD5 = true);
Assert.Throws<InvalidOperationException>(() => settings.VerifyMD5 = true);
Assert.Throws<InvalidOperationException>(() => settings.WriteConcern = WriteConcern.Acknowledged);
}