/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Microsoft.Management.UI.Internal/ManagementList/Common/IAsyncProgress.cs
38 строк
1 KB
Steve Lee
Update copyright notice to latest guidance (#12190)
24 мар 2020, 21:08
Не верифицирован
24 мар 2020, 21:08
b7cb335
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Text; using System.Windows; namespace Microsoft.Management.UI.Internal { /// <summary> /// An interface designed to provide updates about an asynchronous operation. /// If the UI is data bound to the properties in this interface then INotifyPropertyChanged should /// be implemented by the type implementing IAsyncProgress so the UI can get notification of the properties /// being changed. /// </summary> [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.MSInternal", "CA903:InternalNamespaceShouldNotContainPublicTypes")] public interface IAsyncProgress { /// <summary> /// Gets a value indicating whether the async operation is currently running. /// </summary> bool OperationInProgress { get; } /// <summary> /// Gets a the error for the async operation. This field is only valid if /// OperationInProgress is false. null indicates there was no error. /// </summary> Exception OperationError { get; } } }