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
類型:Booleantrue如果程序已取消; 否則, false。
userState
類型:Object值為state參數傳遞至ExecuteAsync執行查詢的呼叫。
results
類型:IEnumerable一堆IRepositoryEntry代表符合查詢參數的可延伸的物件。
totalCount
類型:Int32擴充功能,以符合查詢的參數數目。
備註
雖然這個 API 支援擴充管理員的基礎結構,建議您不要使用它因為它有可能變更。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。