ArcStache.ComLogUtil.LogParameters C# (CSharp) Метод

LogParameters() публичный Метод

Logs the parameters.
public LogParameters ( string className, string publicMethodName, string parameters ) : void
className string Name of the class.
publicMethodName string Name of the public method.
parameters string The parameters.
Результат void
        public void LogParameters(string className, string publicMethodName, string parameters)
        {
            this.Log(LogLevel.Debug, string.Format("{0}::{1}{2}params: {3}", className, publicMethodName, _separator, parameters));
        }