Loupe - Log - Monitor - Resolve
Loupe.Extensibility Namespace / IExtensionDefinitionContext Interface / RegisterRepositorySummaryView Method
A type that implements the IRepositorySummaryView interface.
An end-user display label in the navigation view
Optional. A full description of this view for the end user.
Optional. An end-user tooltip for this view
Optional. An icon displayed in the navigation view.

In This Topic
    RegisterRepositorySummaryView Method
    In This Topic
    Registers the specified type to be the repository summary view for the current extension. There can only be one per extension.
    Syntax
    'Declaration
     
    
    Sub RegisterRepositorySummaryView( _
       ByVal view As Type, _
       ByVal label As String, _
       ByVal description As String, _
       ByVal toolTip As String, _
       ByVal icon As Icon _
    ) 
    void RegisterRepositorySummaryView( 
       Type view,
       string label,
       string description,
       string toolTip,
       Icon icon
    )

    Parameters

    view
    A type that implements the IRepositorySummaryView interface.
    label
    An end-user display label in the navigation view
    description
    Optional. A full description of this view for the end user.
    toolTip
    Optional. An end-user tooltip for this view
    icon
    Optional. An icon displayed in the navigation view.
    Remarks

    Only one type can be a repository summary view for an extension. If the current extension has already registered a repository summary view and attempts to register another an exception will be thrown.

    If the specified type does not implement (directly or through inheritance) the required interface(s) an exception will be thrown.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also