MongoUtility.Command.Operater.IsSystemCollection C# (CSharp) Method

IsSystemCollection() public static method

public static IsSystemCollection ( ) : bool
return bool
        public static bool IsSystemCollection()
        {
            var mongoCol = RuntimeMongoDbContext.GetCurrentCollection();
            //http://docs.mongodb.org/manual/reference/system-collections/
            return IsSystemCollection(mongoCol.Database.Name, mongoCol.Name);
        }

Same methods

Operater::IsSystemCollection ( MongoCollection mongoCol ) : bool
Operater::IsSystemCollection ( string mongoDbName, string mongoColName ) : bool