Table of Contents

Class MessageBoxResponse

Namespace
Playnite
Assembly
Playnite.SDK.dll

Represents message box response options.

public class MessageBoxResponse
Inheritance
MessageBoxResponse
Inherited Members

Constructors

MessageBoxResponse(string, bool, bool)

Creates new instance of MessageBoxResponse.

public MessageBoxResponse(string title, bool isDefault = false, bool isCancel = false)

Parameters

title string
isDefault bool
isCancel bool

Properties

IsCancel

Gets or sets value indicating whether this is option to cancel the request.

public bool IsCancel { get; set; }

Property Value

bool

IsDefault

Gets or sets value indicating whether this is default option.

public bool IsDefault { get; set; }

Property Value

bool

Title

Gets or sets title of response option.

public string Title { get; set; }

Property Value

string