Table of Contents

Interface IAuthorable

Namespace
MonkeyLoader.Meta
Assembly
MonkeyLoader.dll

Defines the interface for something with (potentially) dedicated author information.

public interface IAuthorable

Properties

Authors

Gets the names of the authors of this authorable item.

IEnumerable<string> Authors { get; }

Property Value

IEnumerable<string>

Methods

HasAuthor(string)

Determines whether a given name is listed as an author for this authorable item.

bool HasAuthor(string name)

Parameters

name string

The name to check for.

Returns

bool

true if the given name is listed as an author for this authorable item.