Table of Contents

Class ForbiddenKeyword

Namespace
RadioExt_Helper.config
Assembly
RadioExt-Helper.dll
Represents a forbidden keyword that should not be present in a path.
public class ForbiddenKeyword
Inheritance
ForbiddenKeyword
Inherited Members

Constructors

ForbiddenKeyword()

Empty constructor for serialization.
public ForbiddenKeyword()

ForbiddenKeyword(string, string, bool)

Represents a forbidden keyword that should not be present in a path.
public ForbiddenKeyword(string group, string keyword, bool isForbidden)

Parameters

group string
keyword string
isForbidden bool

Properties

Group

The group that the keyword belongs to.
[Config("group", null, null)]
public string Group { get; set; }

Property Value

string

IsForbidden

Indicates if the keyword is forbidden.
[Config("isForbidden", null, null)]
public bool IsForbidden { get; set; }

Property Value

bool

Keyword

The keyword that is forbidden.
[Config("keyword", null, null)]
public string Keyword { get; set; }

Property Value

string