Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 732 Bytes

interface.md

File metadata and controls

32 lines (21 loc) · 732 Bytes

Interface definition

public abstract class ToolPage : Page
{
    public abstract string ShortName { get; }
}

Runtime logic

The Dev Home framework will look at all types in its assembly for any inheriting from ToolPage:

On a found type, the framework will use:

Method definition

This section contains a more detailed description of each of the interface methods.

ShortName

public abstract string ShortName { get; }

Returns the name of the tool. This is used for the navigation menu text.

Code organization

Contains the interface definition for Dev Home tools.