public Property <int> FindEnumProperty(string path, IBinding binding) { // Explicit generic arguments are required here for Mono builds // ReSharper disable RedundantTypeArgumentsOfMethod return(Context.Find <Property <int> >(this, path, binding, Context.NodeToEnumProperty)); // ReSharper restore RedundantTypeArgumentsOfMethod }
public Collection FindCollection(string path, IBinding binding) { // Explicit generic arguments are required here for Mono builds // ReSharper disable RedundantTypeArgumentsOfMethod return(Context.Find <Collection>(this, path, binding, Context.NodeToCollection)); // ReSharper restore RedundantTypeArgumentsOfMethod }
public Delegate FindCommand(string path, IBinding binding) { // Explicit generic arguments are required here for Mono builds // ReSharper disable RedundantTypeArgumentsOfMethod return(Context.Find <Delegate>(this, path, binding, Context.NodeToDelegate)); // ReSharper restore RedundantTypeArgumentsOfMethod }