/** Pauses all audio effects. * * @return * - 0: Success. * - < 0: Failure. */ public override int PauseAllEffects() { if (_mEngine == null) { return((int)ERROR_CODE.ERROR_NOT_INIT_ENGINE); } return(IRtcEngineNative.pauseAllEffects()); }