public FileSystemProxyCore(FileSystemProxyConfiguration config, ExternalKeySet externalKeys, IDeviceOperator deviceOperator) { Config = config; ProgramRegistry = new ProgramRegistryImpl(Config.ProgramRegistryServiceImpl); ExternalKeys = externalKeys ?? new ExternalKeySet(); DeviceOperator = deviceOperator; }
private Result GetProgramInfo(out ProgramInfo programInfo) { var registry = new ProgramRegistryImpl(_serviceImpl.Config.FsServer); return(registry.GetProgramInfo(out programInfo, _processId)); }
internal Result GetProgramInfo(out ProgramInfo programInfo, ulong processId) { var registry = new ProgramRegistryImpl(_fsServer); return(registry.GetProgramInfo(out programInfo, processId)); }