示例#1
0
        internal ReflectableSDO(ScriptDrivenObject instance, LoadedModule module)
        {
            _module   = module;
            _instance = instance;

            GatherProperties();
            GatherMethods();
        }
示例#2
0
        internal ReflectableSDO(ScriptDrivenObject instance, LoadedModule module)
        {
            _module = module;
            _instance = instance;

            GatherProperties();
            GatherMethods();

        }
示例#3
0
 public ReflectableSDO(ScriptDrivenObject instance, LoadedModuleHandle module)
     : this(instance, module.Module)
 {
 }
示例#4
0
 public void InitializeSDO(ScriptDrivenObject sdo)
 {
     sdo.Initialize(_machine);
 }
示例#5
0
 public ReflectableSDO(ScriptDrivenObject instance, LoadedModuleHandle module)
     : this(instance, module.Module)
 {
 }