Table of Contents

Delegate DisplayError

Namespace
LibVLCSharp.Shared
Assembly
LibVLCSharp.dll

Called when an error message needs to be displayed.

public delegate Task DisplayError(string? title, string? text)

Parameters

title string

title of the dialog

text string

text of the dialog

Returns

Task
Called when an error message needs to be displayed.

Constructors

DisplayError(object, nint)

public DisplayError(object @object, nint method)

Parameters

object object
method nint

Methods

BeginInvoke(string?, string?, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(string? title, string? text, AsyncCallback callback, object @object)

Parameters

title string
text string
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual Task EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Returns

Task

Invoke(string?, string?)

public virtual Task Invoke(string? title, string? text)

Parameters

title string
text string

Returns

Task