C# Class GitSharp.Core.ProgressMonitor

Show file Open project: stschake/GitSharp Class Usage Examples

Public Methods

Method Description
BeginTask ( string title, int totalWork ) : void
EndTask ( ) : void
Start ( int totalTasks ) : void
Update ( int completed ) : void

Method Details

BeginTask() public abstract method

public abstract BeginTask ( string title, int totalWork ) : void
title string
totalWork int
return void

EndTask() public abstract method

public abstract EndTask ( ) : void
return void

Start() public abstract method

public abstract Start ( int totalTasks ) : void
totalTasks int
return void

Update() public abstract method

public abstract Update ( int completed ) : void
completed int
return void