Exemplo n.º 1
0
        public HttpMethodAttribute(Context.HttpMethod method, string bindProcedureName)
        {
            this.Method = method;

            if (bindProcedureName == null)
            {
                bindProcedureName = string.Empty;
            }
            this.BindProcedureName = bindProcedureName;
        }
Exemplo n.º 2
0
 public HttpMethodAttribute(Context.HttpMethod method) : this(method, string.Empty)
 {
 }