Exemple #1
0
 /// <summary>
 /// Returns the extension node in a path
 /// </summary>
 /// <param name="path">
 /// Location of the node.
 /// </param>
 /// <returns>
 /// The node, or null if not found.
 /// </returns>
 public static T GetExtensionNode <T> (string path) where T : ExtensionNode
 {
     AddinEngine.CheckInitialized();
     return(AddinEngine.GetExtensionNode <T> (path));
 }
Exemple #2
0
 /// <summary>
 /// Returns the extension node in a path
 /// </summary>
 /// <param name="path">
 /// Location of the node.
 /// </param>
 /// <returns>
 /// The node, or null if not found.
 /// </returns>
 public static ExtensionNode GetExtensionNode(string path)
 {
     AddinEngine.CheckInitialized();
     return(AddinEngine.GetExtensionNode(path));
 }