Пример #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)
 {
 }