protected APIOperation CreateLoggingProxy(SafeType <APIOperation> api, APIOperation target) { APIOperation ret = target; if (LOGGINGPROXY_ENABLED) { LoggingProxy logging = new LoggingProxy(api, target); ret = NewAPIOperationProxy(api, logging); } return(ret); }
protected APIOperation CreateLoggingProxy(SafeType<APIOperation> api, APIOperation target) { APIOperation ret = target; if (LOGGINGPROXY_ENABLED) { LoggingProxy logging = new LoggingProxy(api, target); ret = NewAPIOperationProxy(api, logging); } return ret; }