IVsGeneratorProgress.Progress 方法

设置指定索引处的多少生成完成。

命名空间:  Microsoft.VisualStudio.Shell.Interop
程序集:  Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)

语法

声明
Function Progress ( _
    nComplete As UInteger, _
    nTotal As UInteger _
) As Integer
int Progress(
    uint nComplete,
    uint nTotal
)

参数

  • nComplete
    类型:System.UInt32
    [in] 指定的索引数生成完成。此值可以从零大小。 nTotal。

返回值

类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。

备注

COM 签名

从 vsshell.idl:

HRESULT IVsGeneratorProgress::Progress(

   [in] ULONG nComplete,

   [in] ULONG nTotal

);

完成由项目系统计算百分比的生成 (nComplete / nTotal) * 100。

Visual Basic 和 Visual C# 项目系统不显示自定义工具进度给用户。 但是,自定义工具仍应执行此方法利用能有 Visual Studio 的未来版本的进度 " 报表。

.NET Framework 安全性

请参见

参考

IVsGeneratorProgress 接口

Microsoft.VisualStudio.Shell.Interop 命名空间