public ServiceResult <bool> CheckPermission(OperationInfo operation) { if (operation == null) { return(new ServiceResult <bool>(false)); } operation.AppKey = operation.AppKey ?? this.AppKey; return(new ServiceResult <bool>(UserAdapter.CheckPermission(this.Token, operation))); }