/// <summary> ///异步请求 自定义路径接口;该接口底层实现为异步 /// </summary> /// <param name="param">请求参数</param> /// <returns></returns> public Task <BatchCustomPathFontFaceResult> GetCustomPathBatchWebFontAsync( BatchCustomPathWoffFontFaceParam param) { var paramDic = ParamBuilder.GetCustomPathFontFace(param, _config); return(CommonGetFontFaceAsync <BatchCustomPathFontFaceResult>(paramDic, _config.Host + ServiceMethod.CustomPath.CreateBatchWebFont, _config)); }