Delegate UpdateProgress
- Namespace
- LibVLCSharp.Shared
- Assembly
- LibVLCSharp.dll
Called when a progress dialog needs to be updated.
public delegate Task UpdateProgress(Dialog dialog, float position, string? text)
Parameters
dialogDialogid of the dialog
positionfloatposition of the progress bar (between 0.0 and 1.0)
textstringnew text of the progress dialog
Returns
- Task
- Called when a progress dialog needs to be updated.
Constructors
UpdateProgress(object, nint)
public UpdateProgress(object @object, nint method)
Parameters
Methods
BeginInvoke(Dialog, float, string?, AsyncCallback, object)
public virtual IAsyncResult BeginInvoke(Dialog dialog, float position, string? text, AsyncCallback callback, object @object)
Parameters
dialogDialogpositionfloattextstringcallbackAsyncCallbackobjectobject
Returns
EndInvoke(IAsyncResult)
public virtual Task EndInvoke(IAsyncResult result)
Parameters
resultIAsyncResult
Returns
Invoke(Dialog, float, string?)
public virtual Task Invoke(Dialog dialog, float position, string? text)