C# Class V8.Net.ScriptObject

Inheritance: System.Attribute
Afficher le fichier Open project: rjamesnw/v8dotnet

Méthodes publiques

Méthode Description
ScriptObject ( ScriptMemberSecurity security ) : System

Allows specifying the default member access for all public members of a class at once.

ScriptObject ( string typeName = null, ScriptMemberSecurity security = ScriptMemberSecurity.ReadWrite ) : System

Allows specifying the default member access for all public members of this class at once.

Method Details

ScriptObject() public méthode

Allows specifying the default member access for all public members of a class at once.
public ScriptObject ( ScriptMemberSecurity security ) : System
security ScriptMemberSecurity The global default access for all public class members.
Résultat System

ScriptObject() public méthode

Allows specifying the default member access for all public members of this class at once.
public ScriptObject ( string typeName = null, ScriptMemberSecurity security = ScriptMemberSecurity.ReadWrite ) : System
typeName string The function name to use when exposing a class to the scripting environment (default is null/empty, which means use the class name as is).
security ScriptMemberSecurity The global default access for all public class members (default is read/write).
Résultat System