简体   繁体   中英

Serializing/Deserializing JSON in Dynamics CRM 2013/2015 Plugin

I am developing a plugin for Dynamics 2015. The plugin requires some setup information which I thought would be a good idea to use a json object in the unsecure configuration. Also, there's an external system which is writing some json into a field in the entity that this plugin responds to which I need to extract information from.

I have tried to use JavascriptSerializer object to deserialize the json but I get a System.MethodAccessException, upon doing some research, I have found out that I can't use the JavascriptSerializer in sandbox mode.

I don't want to have to ILMerge Json.Net into my assembly, so is there any other way I can serialize/deserialize json in my plugin code?

So here's how I solved this one

Given

 string wsData = string.Empty;
 plItem.GetType() == typeof(CategoryInfo);

and

 [DataContract]
 public class CategoryInfo{
    [DataMember]
    public string AllPropertiesToSerialize{ get; set; }
 }  

then

using (var ms = new MemoryStream())
{
     var js = new DataContractJsonSerializer(typeof(CategoryInfo));
     js.WriteObject(ms, plItem);
     ms.Position = 0;
     var sr = new StreamReader(ms);
     wsData = sr.ReadToEnd();
}

Thanks to @dbc and @Guido Preite for the pointers

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM