共用方式為


ExecuteCompletedEventArgs 建構函式

會建立ExecuteCompletedEventArgs要由使用ExecuteCompleted事件。

命名空間:  Microsoft.VisualStudio.ExtensionManager
組件:  Microsoft.VisualStudio.ExtensionManager (在 Microsoft.VisualStudio.ExtensionManager.dll 中)

語法

'宣告
Public Sub New ( _
    exception As Exception, _
    canceled As Boolean, _
    userState As Object, _
    results As IEnumerable, _
    totalCount As Integer _
)
public ExecuteCompletedEventArgs(
    Exception exception,
    bool canceled,
    Object userState,
    IEnumerable results,
    int totalCount
)
public:
ExecuteCompletedEventArgs(
    Exception^ exception, 
    bool canceled, 
    Object^ userState, 
    IEnumerable^ results, 
    int totalCount
)
new : 
        exception:Exception * 
        canceled:bool * 
        userState:Object * 
        results:IEnumerable * 
        totalCount:int -> ExecuteCompletedEventArgs
public function ExecuteCompletedEventArgs(
    exception : Exception, 
    canceled : boolean, 
    userState : Object, 
    results : IEnumerable, 
    totalCount : int
)

參數

  • exception
    類型:Exception

    例外狀況,如果有的話,已經終止處理程序。 否則, nullnull 參考 (即 Visual Basic 中的 Nothing)。

  • canceled
    類型:Boolean

    true如果程序已取消; 否則, false。

  • userState
    類型:Object

    值為state參數傳遞至ExecuteAsync執行查詢的呼叫。

  • results
    類型:IEnumerable

    一堆IRepositoryEntry代表符合查詢參數的可延伸的物件。

  • totalCount
    類型:Int32

    擴充功能,以符合查詢的參數數目。

備註

雖然這個 API 支援擴充管理員的基礎結構,建議您不要使用它因為它有可能變更。

.NET Framework 安全性

請參閱

參考

ExecuteCompletedEventArgs 類別

Microsoft.VisualStudio.ExtensionManager 命名空間