当前位置: 首页>>代码示例>>C#>>正文


C# Newtonsoft.Value方法代码示例

本文整理汇总了C#中Newtonsoft.Value方法的典型用法代码示例。如果您正苦于以下问题:C# Newtonsoft.Value方法的具体用法?C# Newtonsoft.Value怎么用?C# Newtonsoft.Value使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Newtonsoft的用法示例。


在下文中一共展示了Newtonsoft.Value方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetFormulariumById

        public Newtonsoft.Json.Linq.JObject GetFormulariumById(Newtonsoft.Json.Linq.JObject request)
        {
            Formularium formularium = Formularium.GetFormularium(request.Value<int>("id"));
            Newtonsoft.Json.JsonSerializer ser = new JsonSerializer();
            Newtonsoft.Json.Linq.JObject json = Newtonsoft.Json.Linq.JObject.FromObject(formularium, ser);

            return json;
        }
开发者ID:halcwb,项目名称:GenForm,代码行数:8,代码来源:FormulariumController.cs

示例2: Session

 public Session(Newtonsoft.Json.Linq.JToken token, Spakll.CodeMash.Data.Technology technology)
 {
     this.Abstract = token.Value<string>("Abstract");
     this.Description = this.Abstract;
     this.Difficulty = token.Value<string>("Difficulty");
     this.EventType = token.Value<string>("EventType");
     this.SessionLookupId = token.Value<string>("SessionLookupId");
     this.SpeakerName = token.Value<string>("SpeakerName");
     this.SpeakerURI = token.Value<string>("SpeakerURI");
     this.Start = token.Value<DateTime?>("Start");
     this.Subtitle = this.SpeakerName;
     this.Technology = technology;
     this.Title = token.Value<string>("Title");
     this.UniqueId = this.URI = token.Value<string>("URI");
 }
开发者ID:kenlefeb,项目名称:CodeMash,代码行数:15,代码来源:Session.cs

示例3: OnPut

        public override void OnPut(string key, Newtonsoft.Json.Linq.JObject document, Newtonsoft.Json.Linq.JObject metadata, Raven.Http.TransactionInformation transactionInformation)
        {
            if (AuditContext.IsInAuditContext)
                return;

            using (AuditContext.Enter())
            {
                if (metadata.Value<string>("Raven-Entity-Name") == "People")
                {
                    if (metadata["CreatedByPersonId"] == null)
                    {
                        metadata["CreatedByPersonId"] = CurrentOperationContext.Headers.Value["CurrentUserPersonId"];
                        metadata["CreatedDate"] = new DateTime(2011,02,19,15,00,00);
                    }
                    else
                    {
                        metadata["LastUpdatedPersonId"] = CurrentOperationContext.Headers.Value["CurrentUserPersonId"];
						metadata["LastUpdatedDate"] = new DateTime(2011, 02, 19, 15, 00, 00);
                    }
                }
            }
        }
开发者ID:philiphoy,项目名称:ravendb,代码行数:22,代码来源:AuditTrigger.cs

示例4: GetProductList

        public ActionResult GetProductList(Newtonsoft.Json.Linq.JObject paging)
        {
            int start = Int32.Parse(paging.Value<string>("start"));
            int limit = Int32.Parse(paging.Value<string>("limit"));
            string filter = paging.Value<string>("filter");

            ProductInfoList list = ProductInfoList.GetProductInfoList(start, limit);
            // temporary limit, have to inmplement a paging mechanism.
            return this.Direct(new { totalCount = list.TotalCount, records = list });
        }
开发者ID:halcwb,项目名称:GenForm,代码行数:10,代码来源:ProductsController.cs


注:本文中的Newtonsoft.Value方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。