コード例 #1
0
ファイル: Container.cs プロジェクト: florindragos/IronFrame
        public IContainerProcess FindProcessById(int id)
        {
            var process = constrainedProcessRunner.FindProcessById(id);

            if (process == null)
            {
                return(null);
            }
            return(new ContainerProcess(process));
        }