@@ -55,12 +55,12 @@ struct SignInResult;
5555// / <SWIG>
5656// / @if swig_examples
5757// / Firebase.Auth.FirebaseAuth is the gateway to the Firebase authentication
58- // / API. With it, you can reference @ref Firebase.Auth.FirebaseAuth objects to
58+ // / API. With it, you can reference Firebase.Auth.FirebaseAuth objects to
5959// / manage user accounts and credentials.
6060// /
61- // / Each @ref Firebase.FirebaseApp has up to one Firebase.Auth.FirebaseAuth
61+ // / Each Firebase.FirebaseApp has up to one Firebase.Auth.FirebaseAuth
6262// / class. You acquire the Firebase.Auth.FirebaseAuth class through the static
63- // / function @ref Firebase.Auth.FirebaseAuth.GetAuth.
63+ // / function Firebase.Auth.FirebaseAuth.GetAuth.
6464// /
6565// / For example:
6666// / @code{.cs}
@@ -88,12 +88,12 @@ struct SignInResult;
8888// / @if cpp_examples
8989// /
9090// / firebase::auth::Auth is the gateway to the Firebase authentication API.
91- // / With it, you can reference @ref firebase::auth::User objects to manage user
91+ // / With it, you can reference firebase::auth::User objects to manage user
9292// / accounts and credentials.
9393// /
94- // / Each @ref firebase::App has up to one firebase::auth::Auth class. You
94+ // / Each firebase::App has up to one firebase::auth::Auth class. You
9595// / acquire the firebase::auth::Auth class through the static function
96- // / @ref firebase::auth::Auth::GetAuth.
96+ // / firebase::auth::Auth::GetAuth.
9797// /
9898// / For example:
9999// / @code{.cpp}
@@ -128,7 +128,7 @@ struct SignInResult;
128128// / @endif
129129class Auth {
130130 public:
131- // / @brief Results of calls @ref FetchProvidersForEmail.
131+ // / @brief Results of calls FetchProvidersForEmail.
132132 // /
133133 // / <SWIG>
134134 // / @if swig_examples
@@ -155,7 +155,7 @@ class Auth {
155155 // / time after the Auth instance is created.
156156 User current_user ();
157157
158- // / @deprecated This is a deprecated method. Please use @ref
158+ // / @deprecated This is a deprecated method. Please use
159159 // / current_user instead.
160160 // /
161161 // / Synchronously gets the cached current user, or nullptr if there is none.
@@ -247,19 +247,19 @@ class Auth {
247247 // / @endif
248248 Future<FetchProvidersResult> FetchProvidersForEmail (const char * email);
249249
250- // / Get results of the most recent call to @ref FetchProvidersForEmail.
250+ // / Get results of the most recent call to FetchProvidersForEmail.
251251 Future<FetchProvidersResult> FetchProvidersForEmailLastResult () const ;
252252
253- // / Asynchronously logs into Firebase with the given @ref Auth token.
253+ // / Asynchronously logs into Firebase with the given Auth token.
254254 // /
255255 // / An error is returned if the token is invalid, expired or otherwise not
256256 // / accepted by the server.
257257 Future<AuthResult> SignInWithCustomToken (const char * custom_token);
258258
259- // / Get results of the most recent call to @ref SignInWithCustomToken.
259+ // / Get results of the most recent call to SignInWithCustomToken.
260260 Future<AuthResult> SignInWithCustomTokenLastResult () const ;
261261
262- // / @deprecated This is a deprecated method. Please use @ref
262+ // / @deprecated This is a deprecated method. Please use
263263 // / SignInWithCustomToken instead.
264264 // /
265265 // / Asynchronously logs into Firebase with the given Auth token.
@@ -271,32 +271,32 @@ class Auth {
271271
272272 // / @deprecated
273273 // /
274- // / Get results of the most recent call to @ref
274+ // / Get results of the most recent call to
275275 // / SignInWithCustomToken_DEPRECATED.
276276 FIREBASE_DEPRECATED Future<User*> SignInWithCustomTokenLastResult_DEPRECATED ()
277277 const ;
278278
279- // / Convenience method for @ref SignInAndRetrieveDataWithCredential that
279+ // / Convenience method for SignInAndRetrieveDataWithCredential that
280280 // / doesn't return additional identity provider data.
281281 Future<User> SignInWithCredential (const Credential& credential);
282282
283283 // / @deprecated
284284 // /
285- // / Get results of the most recent call to @ref SignInWithCredential.
285+ // / Get results of the most recent call to SignInWithCredential.
286286 Future<User> SignInWithCredentialLastResult () const ;
287287
288- // / @deprecated This is a deprecated method. Please use @ref
288+ // / @deprecated This is a deprecated method. Please use
289289 // / SignInWithCredential instead.
290290 // /
291- // / Convenience method for @ref
291+ // / Convenience method for
292292 // / SignInAndRetrieveDataWithCredential_DEPRECATED that doesn't
293293 // / return additional identity provider data.
294294 FIREBASE_DEPRECATED Future<User*> SignInWithCredential_DEPRECATED (
295295 const Credential& credential);
296296
297297 // / @deprecated
298298 // /
299- // / Get results of the most recent call to @ref
299+ // / Get results of the most recent call to
300300 // / SignInWithCredential_DEPRECATED.
301301 FIREBASE_DEPRECATED Future<User*> SignInWithCredentialLastResult_DEPRECATED ()
302302 const ;
@@ -313,7 +313,7 @@ class Auth {
313313 // / preset error code: kAuthErrorUnimplemented.
314314 Future<AuthResult> SignInWithProvider (FederatedAuthProvider* provider);
315315
316- // / @deprecated This is a deprecated method. Please use @ref
316+ // / @deprecated This is a deprecated method. Please use
317317 // / SignInWithProvider instead.
318318 // /
319319 // / Sign-in a user authenticated via a federated auth provider.
@@ -344,10 +344,10 @@ class Auth {
344344 const Credential& credential);
345345
346346 // / Get results of the most recent call to
347- // / @ref SignInAndRetrieveDataWithCredential.
347+ // / SignInAndRetrieveDataWithCredential.
348348 Future<AuthResult> SignInAndRetrieveDataWithCredentialLastResult () const ;
349349
350- // / @deprecated This is a deprecated method. Please use @ref
350+ // / @deprecated This is a deprecated method. Please use
351351 // / SignInAndRetrieveDataWithCredential instead.
352352 // /
353353 // / Asynchronously logs into Firebase with the given credentials.
@@ -367,7 +367,7 @@ class Auth {
367367 // / @deprecated
368368 // /
369369 // / Get results of the most recent call to
370- // / @ref SignInAndRetrieveDataWithCredential_DEPRECATED.
370+ // / SignInAndRetrieveDataWithCredential_DEPRECATED.
371371 FIREBASE_DEPRECATED Future<SignInResult>
372372 SignInAndRetrieveDataWithCredentialLastResult_DEPRECATED () const ;
373373
@@ -426,16 +426,16 @@ class Auth {
426426 // / @endif
427427 Future<AuthResult> SignInAnonymously ();
428428
429- // / Get results of the most recent call to @ref SignInAnonymously.
429+ // / Get results of the most recent call to SignInAnonymously.
430430 Future<AuthResult> SignInAnonymouslyLastResult () const ;
431431
432- // / @deprecated This is a deprecated method. Please use @ref SignInAnonymously
432+ // / @deprecated This is a deprecated method. Please use SignInAnonymously
433433 // / instead.
434434 FIREBASE_DEPRECATED Future<User*> SignInAnonymously_DEPRECATED ();
435435
436436 // / @deprecated
437437 // /
438- // / Get results of the most recent call to @ref SignInAnonymously_DEPRECATED.
438+ // / Get results of the most recent call to SignInAnonymously_DEPRECATED.
439439 FIREBASE_DEPRECATED Future<User*> SignInAnonymouslyLastResult_DEPRECATED ()
440440 const ;
441441
@@ -445,11 +445,11 @@ class Auth {
445445 Future<AuthResult> SignInWithEmailAndPassword (const char * email,
446446 const char * password);
447447
448- // / Get results of the most recent call to @ref
448+ // / Get results of the most recent call to
449449 // / SignInWithEmailAndPassword.
450450 Future<AuthResult> SignInWithEmailAndPasswordLastResult () const ;
451451
452- // / @deprecated This is a deprecated method. Please use @ref
452+ // / @deprecated This is a deprecated method. Please use
453453 // / SignInWithEmailAndPassword instead.
454454 // /
455455 // / Signs in using provided email address and password.
@@ -460,7 +460,7 @@ class Auth {
460460
461461 // / @deprecated
462462 // /
463- // / Get results of the most recent call to @ref
463+ // / Get results of the most recent call to
464464 // / SignInWithEmailAndPassword_DEPRECATED.
465465 FIREBASE_DEPRECATED Future<User*>
466466 SignInWithEmailAndPasswordLastResult_DEPRECATED () const ;
@@ -474,10 +474,10 @@ class Auth {
474474 const char * password);
475475
476476 // / Get results of the most recent call to
477- // / @ref CreateUserWithEmailAndPassword.
477+ // / CreateUserWithEmailAndPassword.
478478 Future<AuthResult> CreateUserWithEmailAndPasswordLastResult () const ;
479479
480- // / @deprecated This is a deprecated method. Please use @ref
480+ // / @deprecated This is a deprecated method. Please use
481481 // / CreateUserWithEmailAndPassword instead.
482482 // /
483483 // / Creates, and on success, logs in a user with the given email address
@@ -489,7 +489,7 @@ class Auth {
489489 const char * email, const char * password);
490490
491491 // / Get results of the most recent call to
492- // / @ref CreateUserWithEmailAndPassword_DEPRECATED.
492+ // / CreateUserWithEmailAndPassword_DEPRECATED.
493493 FIREBASE_DEPRECATED Future<User*>
494494 CreateUserWithEmailAndPasswordLastResult_DEPRECATED () const ;
495495
@@ -564,7 +564,7 @@ class Auth {
564564 // / @endif
565565 Future<void > SendPasswordResetEmail (const char * email);
566566
567- // / Get results of the most recent call to @ref SendPasswordResetEmail.
567+ // / Get results of the most recent call to SendPasswordResetEmail.
568568 Future<void > SendPasswordResetEmailLastResult () const ;
569569
570570#ifndef SWIG
@@ -586,7 +586,7 @@ class Auth {
586586 // / Use RemoveAuthStateListener to unregister a listener.
587587 // /
588588 // / @note The caller owns `listener` and is responsible for destroying it.
589- // / When `listener` is destroyed, or when @ref Auth is destroyed,
589+ // / When `listener` is destroyed, or when Auth is destroyed,
590590 // / RemoveAuthStateListener is called automatically.
591591 void AddAuthStateListener (AuthStateListener* listener);
592592
@@ -615,7 +615,7 @@ class Auth {
615615 // / Use RemoveIdTokenListener to unregister a listener.
616616 // /
617617 // / @note The caller owns `listener` and is responsible for destroying it.
618- // / When `listener` is destroyed, or when @ref Auth is destroyed,
618+ // / When `listener` is destroyed, or when Auth is destroyed,
619619 // / RemoveIdTokenListener is called automatically.
620620 void AddIdTokenListener (IdTokenListener* listener);
621621
@@ -744,7 +744,7 @@ class AuthStateListener {
744744 // / - When the current user is signed out
745745 // / - When the current user changes
746746 // /
747- // / @param[in] auth Disambiguates which @ref Auth instance the event
747+ // / @param[in] auth Disambiguates which Auth instance the event
748748 // / corresponds to, in the case where you are using more than one at the same
749749 // / time.
750750 virtual void OnAuthStateChanged (Auth* auth) = 0;
@@ -778,7 +778,7 @@ class IdTokenListener {
778778 // / - When the current user changes
779779 // / - When there is a change in the current user's token
780780 // /
781- // / @param[in] auth Disambiguates which @ref Auth instance the event
781+ // / @param[in] auth Disambiguates which Auth instance the event
782782 // / corresponds to, in the case where you are using more than one at the same
783783 // / time.
784784 virtual void OnIdTokenChanged (Auth* auth) = 0;
@@ -849,7 +849,7 @@ class FederatedAuthProvider {
849849
850850 // / @brief Application sign-in handler.
851851 // /
852- // / Invoked in SignIn flows that use @ref Auth::SignInWithProvider.
852+ // / Invoked in SignIn flows that use Auth::SignInWithProvider.
853853 // /
854854 // / The application must implement this method to handle federated auth user
855855 // / sign-in requests on non-mobile systems.
@@ -865,13 +865,13 @@ class FederatedAuthProvider {
865865 virtual void OnSignIn (const T& provider_data,
866866 AuthResultCompletionHandle* completion_handle) {}
867867
868- // / @deprecated Invoked in SignIn flows that use @ref
869- // / Auth::SignInWithProvider_DEPRECATED. Use @ref Auth::SignInWithProvider
868+ // / @deprecated Invoked in SignIn flows that use
869+ // / Auth::SignInWithProvider_DEPRECATED. Use Auth::SignInWithProvider
870870 // / instead.
871871 // /
872872 // / @brief Application sign-in handler.
873873 // /
874- // / Invoked in SignIn flows that use @ref
874+ // / Invoked in SignIn flows that use
875875 // / Auth::SignInWithProvider_DEPRECATED.
876876 // /
877877 // / The application must implement this method to handle federated auth user
@@ -888,7 +888,7 @@ class FederatedAuthProvider {
888888 FIREBASE_DEPRECATED virtual void OnSignIn (
889889 const T& provider_data, AuthCompletionHandle* completion_handle) {}
890890
891- // / Completion for OnSignIn events started by a call to @ref
891+ // / Completion for OnSignIn events started by a call to
892892 // / Auth::SignInWithProvider.
893893 // /
894894 // / Invoke this method once the corresponding OnSignIn has been fulfilled.
@@ -912,7 +912,7 @@ class FederatedAuthProvider {
912912
913913 // / @deprecated
914914 // /
915- // / Completion for OnSignIn events started by a call to @ref
915+ // / Completion for OnSignIn events started by a call to
916916 // / Auth::SignInWithProvider_DEPRECATED.
917917 // /
918918 // / Invoke this method once the corresponding OnSignIn has been fulfilled.
@@ -937,7 +937,7 @@ class FederatedAuthProvider {
937937
938938 // / @brief Application user account link handler.
939939 // /
940- // / Invoked in Link flows that use @ref User::LinkWithProvider.
940+ // / Invoked in Link flows that use User::LinkWithProvider.
941941 // /
942942 // / The application must implement this method to handle federated auth user
943943 // / link requests on non-mobile systems.
@@ -952,13 +952,13 @@ class FederatedAuthProvider {
952952 virtual void OnLink (const T& provider_data,
953953 AuthResultCompletionHandle* completion_handle) {}
954954
955- // / @deprecated Invoked in Link flows that use @ref
956- // / User::LinkWithProvider_DEPRECATED. Use @ref User::LinkWithProvider
955+ // / @deprecated Invoked in Link flows that use
956+ // / User::LinkWithProvider_DEPRECATED. Use User::LinkWithProvider
957957 // / instead.
958958 // /
959959 // / @brief Application user account link handler.
960960 // /
961- // / Invoked in Link flows that use @ref User::LinkWithProvider_DEPRECATED.
961+ // / Invoked in Link flows that use User::LinkWithProvider_DEPRECATED.
962962 // /
963963 // / @brief Application user account link handler.
964964 // /
@@ -998,7 +998,7 @@ class FederatedAuthProvider {
998998
999999 // / @deprecated
10001000 // /
1001- // / Completion for OnLink events started by a call to @ref
1001+ // / Completion for OnLink events started by a call to
10021002 // / User::LinkWithProvider_DEPRECATED.
10031003 // /
10041004 // / Invoke this method once the OnLink process has been fulfilled. This
@@ -1037,8 +1037,8 @@ class FederatedAuthProvider {
10371037 const T& provider_data, AuthResultCompletionHandle* completion_handle) {
10381038 }
10391039
1040- // / @deprecated Invoked in Reauthenticate flows that use @ref
1041- // / User::ReauthenticateWithProvider_DEPRECATED. Use @ref
1040+ // / @deprecated Invoked in Reauthenticate flows that use
1041+ // / User::ReauthenticateWithProvider_DEPRECATED. Use
10421042 // / User::ReauthenticateWithProvider instead.
10431043 // /
10441044 // / @brief Application user re-authentication handler.
0 commit comments