Table of Contents

Enum Context.SetStatus

Namespace
EzrSquared.Runtime
Assembly
ezrSquared-lib.dll

Represents the status of a set call.

public enum Context.SetStatus

Fields

ConstantAssignmentNotAllowed = 1

Assigning new values to a constant reference is not allowed.

InvalidGlobalPrivateAssignmentNotAllowed = 7

Cannot assign symbols with both Global and Private accessibility modifiers.

Ok = 0

The operation was successful.

PrivateSymbolAssignmentInChildNotAllowed = 4

Assigning a private symbol to a child Context is not allowed.

PrivateSymbolAssignmentNotAllowed = 2

Assigning privates symbols from Contexts without permission is not allowed.

StaticAssignmentWithoutDefinedContextNotAllowed = 6

Assigning static symbols without a known static Context is not allowed.

SymbolAccessibilityChangeInParentNotAllowed = 3

Changing the accessibility of an existing symbol in a parent Context is not allowed.

UnregisteredSymbolScopeOrVariabilityChangeNotAllowed = 5

Changing the accessibility of a symbol which has not been assigned to a Context is not allowed.

Remarks