BBM.RemoteWidget.RemoteWidget.RemoteWidget C# (CSharp) Метод

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

public RemoteWidget ( string module_name, string param_prefix, string skin, string view ) : System.Collections.Specialized
module_name string
param_prefix string
skin string
view string
Результат System.Collections.Specialized
        public RemoteWidget(string module_name, string param_prefix, string skin, string view)
        {
            m_module_name = module_name;
            m_param_prefix = param_prefix;
            // set module configuration arguments
            m_args = new NameValueCollection();
            m_args["skin"] = skin;
            m_args["view"] = view;
            // make placeholder for user-supplied args (from Request.QueryString and Request.Form)
            m_params = new NameValueCollection();
        }