FdoToolbox.Base.Scripting.ApplicationScript.ApplicationScript C# (CSharp) Метод

ApplicationScript() приватный Метод

Initializes a new instance of the ApplicationScript class.
private ApplicationScript ( string path, CompiledCode code, ScriptScope scope ) : System
path string The path.
code CompiledCode The code.
scope ScriptScope The scope.
Результат System
        internal ApplicationScript(string path, CompiledCode code, ScriptScope scope)
        {
            _Path = path;
            _code = code;
            _scope = scope;
        }
ApplicationScript