zoukankan      html  css  js  c++  java
  • [置顶] C#中 Process的扩展类ProcessExtensions

    /// <summary>
        /// Process extensions
        /// </summary>
        public static class ProcessExtensions
        {
            #region Functions

            #region KillProcessAsync

            /// <summary>
            /// Kills a process
            /// </summary>
            /// <param name="Process">Process that should be killed</param>
            /// <param name="TimeToKill">Amount of time (in ms) until the process is killed.</param>
            public static void KillProcessAsync(this Process Process, int TimeToKill = 0)
            {
                if (Process == null)
                    throw new ArgumentNullException("Process");
                ThreadPool.QueueUserWorkItem(delegate { KillProcessAsyncHelper(Process, TimeToKill); });
            }

            /// <summary>
            /// Kills a list of processes
            /// </summary>
            /// <param name="Processes">Processes that should be killed</param>
            /// <param name="TimeToKill">Amount of time (in ms) until the processes are killed.</param>
            public static void KillProcessAsync(this IEnumerable<Process> Processes, int TimeToKill = 0)
            {
                if (Processes == null)
                    throw new ArgumentNullException("Processes");
                Processes.ForEach(x => ThreadPool.QueueUserWorkItem(delegate { KillProcessAsyncHelper(x, TimeToKill); }));
            }

            #endregion

            #region GetInformation

            /// <summary>
            /// Gets information about all processes and returns it in an HTML formatted string
            /// </summary>
            /// <param name="Process">Process to get information about</param>
            /// <param name="HTMLFormat">Should this be HTML formatted?</param>
            /// <returns>An HTML formatted string</returns>
            public static string GetInformation(this Process Process, bool HTMLFormat = true)
            {
                StringBuilder Builder = new StringBuilder();
                return Builder.Append(HTMLFormat ? "<strong>" : "")
                       .Append(Process.ProcessName)
                       .Append(" Information")
                       .Append(HTMLFormat ? "</strong><br />" : "\n")
                       .Append(Process.DumpProperties(HTMLFormat))
                       .Append(HTMLFormat ? "<br />" : "\n")
                       .ToString();
            }

            /// <summary>
            /// Gets information about all processes and returns it in an HTML formatted string
            /// </summary>
            /// <param name="Processes">Processes to get information about</param>
            /// <param name="HTMLFormat">Should this be HTML formatted?</param>
            /// <returns>An HTML formatted string</returns>
            public static string GetInformation(this IEnumerable<Process> Processes, bool HTMLFormat = true)
            {
                StringBuilder Builder = new StringBuilder();
                Processes.ForEach(x => Builder.Append(x.GetInformation(HTMLFormat)));
                return Builder.ToString();
            }

            /// <summary>
            /// Get information of the process name
            /// </summary>
            /// <param name="Process">Process to get information about</param>
            /// <returns></returns>
            public static string GetInformation(this Process Process)
            {
                return Process.ProcessName;
            }

            /// <summary>
            /// Gets information about all processes and returns it in  string
            /// </summary>
            /// <param name="Processes">Processes to get information about</param>
            /// <returns>string</returns>
            public static string GetInformation(this IEnumerable<Process> Processes)
            {
                StringBuilder Builder = new StringBuilder();
                Processes.ForEach(x => Builder.Append(x.GetInformation()));
                return Builder.ToString();
            }

            #endregion

            #endregion

            #region Private Static Functions

            /// <summary>
            /// Kills a process asyncronously
            /// </summary>
            /// <param name="ProcessName">Name of the process to kill</param>
            /// <param name="TimeToKill">Amount of time until the process is killed</param>
            private static void KillProcessAsyncHelper(Process Process, int TimeToKill)
            {
                if (TimeToKill > 0)
                    Thread.Sleep(TimeToKill);
                Process.Kill();
            }

            #endregion
        }
  • 相关阅读:
    nginx js、css多个请求合并为一个请求(concat模块)
    Web客户端语言HTML、XHTML和XML相关知识介绍
    正则小略
    你可能不知道的5个功能强大的 HTML5 API
    你须知道的30个CSS选择器 »
    css3 media媒体查询器用法总结
    深入java虚拟机学习 -- 类的加载机制
    ElasticSearch和solr的差别
    idea 使用debugger技巧
    vue学习问题总结(一)
  • 原文地址:https://www.cnblogs.com/kevinGao/p/2776050.html
Copyright © 2011-2022 走看看