Microsoft.Azure.Commands.Insights.EventCmdletBase.ProcessParameters C# (CSharp) Method

ProcessParameters() protected method

Process the general parameters (i.e. defined in this class) and the particular parameters (i.e. the parameters added by the descendants of this class).
protected ProcessParameters ( ) : string
return string
        protected string ProcessParameters()
        {
            string queryFilter = this.ProcessGeneralParameters();
            return this.ProcessParticularParameters(queryFilter);
        }