C# Класс YAMP.SystemFunction

SystemFunction is a special kind of ArgumentFunction, which saves the passed ParseContext in a variable, which can be accessed over the property Context.
Наследование: ArgumentFunction
Показать файл Открыть проект

Открытые методы

Метод Описание
Perform ( ParseContext context, Value argument ) : Value

Performs the function in the given context.

SystemFunction ( ParseContext context ) : System

Creates a new system function with a specific context.

Защищенные методы

Метод Описание
RaiseNotification ( NotificationType notificationType, String message ) : void

Raises a notification event.

Описание методов

Perform() публичный Метод

Performs the function in the given context.
public Perform ( ParseContext context, Value argument ) : Value
context ParseContext The context where the function is executed.
argument Value The argument of the function.
Результат Value

RaiseNotification() защищенный Метод

Raises a notification event.
protected RaiseNotification ( NotificationType notificationType, String message ) : void
notificationType NotificationType The type of notification.
message String The message to use.
Результат void

SystemFunction() публичный Метод

Creates a new system function with a specific context.
public SystemFunction ( ParseContext context ) : System
context ParseContext The given context.
Результат System