Loupe - Log - Monitor - Resolve
Loupe.Extensibility Namespace / IExtensionDefinitionContext Interface / RegisterSessionSummaryView Method / RegisterSessionSummaryView(Type,String,String,String,Icon) Method
A type that implements the ISessionSummaryView interface.
An end-user display label in menus and lists
Optional. A full description of this view for the end user.
Optional. An end-user tooltip for this view
Optional. An icon that will be added to menus and lists.

In This Topic
    RegisterSessionSummaryView(Type,String,String,String,Icon) Method
    In This Topic
    Registers the specified type to be a session summary view for the current extension
    Syntax
    'Declaration
     
    
    Overloads Sub RegisterSessionSummaryView( _
       ByVal view As Type, _
       ByVal label As String, _
       ByVal description As String, _
       ByVal toolTip As String, _
       ByVal icon As Icon _
    ) 
    void RegisterSessionSummaryView( 
       Type view,
       string label,
       string description,
       string toolTip,
       Icon icon
    )

    Parameters

    view
    A type that implements the ISessionSummaryView interface.
    label
    An end-user display label in menus and lists
    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 that will be added to menus and lists.
    Remarks

    Types should not be registered more than once, however duplicate registrations will be ignored.

    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