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


C# BsonReader.ReadJavaScriptWithScope方法代碼示例

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


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

示例1: Deserialize

        // public methods
        /// <summary>
        /// Deserializes an object from a BsonReader.
        /// </summary>
        /// <param name="bsonReader">The BsonReader.</param>
        /// <param name="nominalType">The nominal type of the object.</param>
        /// <param name="actualType">The actual type of the object.</param>
        /// <param name="options">The serialization options.</param>
        /// <returns>An object.</returns>
        public override object Deserialize(
            BsonReader bsonReader,
            Type nominalType,
            Type actualType,
            IBsonSerializationOptions options)
        {
            VerifyTypes(nominalType, actualType, typeof(BsonJavaScriptWithScope));

            var bsonType = bsonReader.GetCurrentBsonType();
            switch (bsonType)
            {
                case BsonType.JavaScriptWithScope:
                    var code = bsonReader.ReadJavaScriptWithScope();
                    var scope = (BsonDocument)BsonDocumentSerializer.Instance.Deserialize(bsonReader, typeof(BsonDocument), null);
                    return new BsonJavaScriptWithScope(code, scope);
                default:
                    var message = string.Format("Cannot deserialize BsonJavaScriptWithScope from BsonType {0}.", bsonType);
                    throw new FileFormatException(message);
            }
        }
開發者ID:robinNode,項目名稱:mongo-csharp-driver,代碼行數:29,代碼來源:BsonJavaScriptWithScopeSerializer.cs

示例2: Deserialize

        // public methods
        /// <summary>
        /// Deserializes an object from a BsonReader.
        /// </summary>
        /// <param name="bsonReader">The BsonReader.</param>
        /// <param name="nominalType">The nominal type of the object.</param>
        /// <param name="actualType">The actual type of the object.</param>
        /// <param name="options">The serialization options.</param>
        /// <returns>An object.</returns>
        public override object Deserialize(
            BsonReader bsonReader,
            Type nominalType,
            Type actualType,
            IBsonSerializationOptions options)
        {
            VerifyTypes(nominalType, actualType, typeof(BsonJavaScriptWithScope));

            var bsonType = bsonReader.GetCurrentBsonType();
            if (bsonType == BsonType.Null)
            {
                bsonReader.ReadNull();
                return null;
            }
            else
            {
                var code = bsonReader.ReadJavaScriptWithScope();
                var scope = BsonDocument.ReadFrom(bsonReader);
                return new BsonJavaScriptWithScope(code, scope);
            }
        }
開發者ID:andreabalducci,項目名稱:mongo-csharp-driver,代碼行數:30,代碼來源:BsonJavaScriptWithScopeSerializer.cs

示例3: TestJavaScriptWithScope

 public void TestJavaScriptWithScope() {
     string json = "{ \"$code\" : \"function f() { return n; }\", \"$scope\" : { \"n\" : 1 } }";
     using (bsonReader = BsonReader.Create(json)) {
         Assert.AreEqual(BsonType.JavaScriptWithScope, bsonReader.ReadBsonType());
         Assert.AreEqual("function f() { return n; }", bsonReader.ReadJavaScriptWithScope());
         bsonReader.ReadStartDocument();
         Assert.AreEqual(BsonType.Int32, bsonReader.ReadBsonType());
         Assert.AreEqual("n", bsonReader.ReadName());
         Assert.AreEqual(1, bsonReader.ReadInt32());
         bsonReader.ReadEndDocument();
         Assert.AreEqual(BsonReaderState.Done, bsonReader.State);
     }
     Assert.AreEqual(json, BsonSerializer.Deserialize<BsonJavaScriptWithScope>(new StringReader(json)).ToJson());
 }
開發者ID:redforks,項目名稱:mongo-csharp-driver,代碼行數:14,代碼來源:JsonReaderTests.cs

示例4: Deserialize

 public override object Deserialize(
     BsonReader bsonReader,
     Type nominalType
 )
 {
     var bsonType = bsonReader.CurrentBsonType;
     if (bsonType == BsonType.Null) {
         bsonReader.ReadNull();
         return null;
     } else {
         var code = bsonReader.ReadJavaScriptWithScope();
         var scope = BsonDocument.ReadFrom(bsonReader);
         return new BsonJavaScriptWithScope(code, scope);
     }
 }
開發者ID:kenegozi,項目名稱:mongo-csharp-driver,代碼行數:15,代碼來源:BsonValueSerializers.cs


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