本文整理汇总了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);
}