public RestServiceBehaviorAttribute(string customBizExceptionTypeName, string exceptionHandlerTypeName) { m_RestServiceBehavior = new RestServiceBehavior(customBizExceptionTypeName, exceptionHandlerTypeName); }
public RestServiceBehaviorAttribute(Type customBizExceptionType, Type exceptionHandlerType) { m_RestServiceBehavior = new RestServiceBehavior(customBizExceptionType, exceptionHandlerType); }
public RestServiceBehaviorAttribute() { m_RestServiceBehavior = new RestServiceBehavior(); }