Typed helper methods for storing and retrieving data on IMarkdownObject.
public static class MarkdownObjectDataExtensions
kind:method, kind:property, kind:ctor. Press Esc to clear.GetData<T>(IMarkdownObject, DataKey<T>)Gets the data associated with the specified typed key.GetData<T>(IMarkdownObject, Object)Gets the data associated with the specified key.GetData<T>(IMarkdownObject)Gets the data associated with the conventional type key (typeof(T)).SetData<T>(IMarkdownObject, T)Sets data on the conventional type key (typeof(T)).SetData<T>(IMarkdownObject, DataKey<T>, T)Sets data on the specified typed key.TryGetData<T>(IMarkdownObject, DataKey<T>, out T?)Tries to get the data associated with the specified typed key.TryGetData<T>(IMarkdownObject, Object, out T?)Tries to get the data associated with the specified key.