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


C# MongoGridFSSettings.ApplyDefaultValues方法代碼示例

本文整理匯總了C#中MongoDB.Driver.GridFS.MongoGridFSSettings.ApplyDefaultValues方法的典型用法代碼示例。如果您正苦於以下問題:C# MongoGridFSSettings.ApplyDefaultValues方法的具體用法?C# MongoGridFSSettings.ApplyDefaultValues怎麽用?C# MongoGridFSSettings.ApplyDefaultValues使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在MongoDB.Driver.GridFS.MongoGridFSSettings的用法示例。


在下文中一共展示了MongoGridFSSettings.ApplyDefaultValues方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: 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

示例2: 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

示例3: ApplyDefaultValues

        // private static methods
        private static MongoGridFSSettings ApplyDefaultValues(MongoGridFSSettings settings, MongoDatabase database)
        {
            if (settings == null)
            {
                throw new ArgumentNullException("settings");
            }
            if (database == null)
            {
                throw new ArgumentNullException("database");
            }

            settings = settings.Clone();
            settings.ApplyDefaultValues(database.Settings);
            return settings;
        }
開發者ID:paberline,項目名稱:mongo-csharp-driver,代碼行數:16,代碼來源:MongoGridFS.cs


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