/// <summary>
 /// Creates a default instance of the plugin container for a StackClient.
 /// </summary>
 /// <returns></returns>
 private StackClientPlugins InstancePlugins()
 {
     StackClientPlugins plugins = new StackClientPlugins(
         new Defaults(),
         new RequestHandler(),
         new EventLog(),
         new ResponseCache(),
         new RequestThrottler()
     );
     return plugins;
 }
        /// <summary>
        /// Creates a default instance of the plugin container for a StackClient.
        /// </summary>
        /// <returns></returns>
        private StackClientPlugins InstancePlugins()
        {
            StackClientPlugins plugins = new StackClientPlugins(
                new Defaults(),
                new RequestHandler(),
                new EventLog(),
                new ResponseCache(),
                new RequestThrottler()
                );

            return(plugins);
        }