Abp.Domain.Entities.IExtendableObject.GetData(string, Newtonsoft.Json.JsonSerializer)

Here are the examples of the csharp api class Abp.Domain.Entities.IExtendableObject.GetData(string, Newtonsoft.Json.JsonSerializer) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: aspnetboilerplate
Source File: ExtendableObjectExtensions.cs
public static T GetData<T>([NotNull] this IExtendableObject extendableObject, [NotNull] string name, bool handleType = false)
        {
            return extendableObject.GetData<T>(
                name,
                handleType
                    ? new JsonSerializer { TypeNameHandling = TypeNameHandling.All }
                    : JsonSerializer.CreateDefault()
            );
        }