PSLanguageMode Enum

Definition

This enum defines what subset of the PowerShell language is permitted when calling into this execution environment.

public enum class PSLanguageMode
public enum PSLanguageMode
type PSLanguageMode = 
Public Enum PSLanguageMode
Inheritance
PSLanguageMode

Fields

ConstrainedLanguage 3

Exposes a subset of the PowerShell language that limits itself to core PowerShell types, does not support method invocation (except on those types), and does not support property setters (except on those types).

FullLanguage 0

All PowerShell language elements are available.

NoLanguage 2

Commands containing script text to evaluate are not allowed. You can only call commands using the Runspace APIs when in this mode.

RestrictedLanguage 1

A subset of language elements are available to external requests.

Applies to