Class ObjectJsonExtensions
Provides object extension methods.
Inheritance
System.Object
Namespace: Umbraco.Extensions
Assembly: cs.temp.dll.dll
Syntax
public static class ObjectJsonExtensions
Methods
ToObjectDictionary<T>(T, Func<PropertyInfo, String>)
Converts an object's properties into a dictionary.
Declaration
public static Dictionary<string, object> ToObjectDictionary<T>(T obj, Func<PropertyInfo, string> namer = null)
Parameters
Type | Name | Description |
---|---|---|
T | obj | The object to convert. |
System. |
namer | A property namer function. |
Returns
Type | Description |
---|---|
System. |
A dictionary containing each properties. |
Type Parameters
Name | Description |
---|---|
T |