當前位置: 首頁>>代碼示例>>C#>>正文


C# MongoGridFSSettings.Freeze方法代碼示例

本文整理匯總了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);
 }
開發者ID:jenrom,項目名稱:mongo-csharp-driver,代碼行數:12,代碼來源:MongoGridFSSettingsTests.cs

示例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];
 }
開發者ID:kamiff,項目名稱:mongo-csharp-driver,代碼行數:14,代碼來源:MongoGridFS.cs

示例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");
        }
開發者ID:robinNode,項目名稱:mongo-csharp-driver,代碼行數:16,代碼來源:MongoGridFS.cs

示例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;
        }
開發者ID:paberline,項目名稱:mongo-csharp-driver,代碼行數:29,代碼來源:MongoGridFS.cs

示例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);
 }
開發者ID:narutoswj,項目名稱:mongo-csharp-driver,代碼行數:14,代碼來源:MongoGridFSSettingsTests.cs


注:本文中的MongoDB.Driver.GridFS.MongoGridFSSettings.Freeze方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。