C# 클래스 V8.Net.ScriptObject

상속: System.Attribute
파일 보기 프로젝트 열기: rjamesnw/v8dotnet

공개 메소드들

메소드 설명
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.

메소드 상세

ScriptObject() 공개 메소드

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.
리턴 System

ScriptObject() 공개 메소드

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).
리턴 System