IGraphContext.ReportProgress Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Called by the providers to report progress.
Namespace: Microsoft.VisualStudio.GraphModel
Assembly: Microsoft.VisualStudio.GraphModel (in Microsoft.VisualStudio.GraphModel.dll)
Syntax
'Declaration
Sub ReportProgress ( _
current As Integer, _
maximum As Integer, _
message As String _
)
void ReportProgress(
int current,
int maximum,
string message
)
void ReportProgress(
int current,
int maximum,
String^ message
)
abstract ReportProgress :
current:int *
maximum:int *
message:string -> unit
function ReportProgress(
current : int,
maximum : int,
message : String
)
Parameters
current
Type: System.Int32The current position relative to the given maximum.
maximum
Type: System.Int32The estimated maximum amount of work to be done.
message
Type: System.StringAn optional localized message that states what is being done.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.