@@ -55,12 +55,12 @@ struct SignInResult;
55
55
// / <SWIG>
56
56
// / @if swig_examples
57
57
// / 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
59
59
// / manage user accounts and credentials.
60
60
// /
61
- // / Each @ref Firebase.FirebaseApp has up to one Firebase.Auth.FirebaseAuth
61
+ // / Each Firebase.FirebaseApp has up to one Firebase.Auth.FirebaseAuth
62
62
// / class. You acquire the Firebase.Auth.FirebaseAuth class through the static
63
- // / function @ref Firebase.Auth.FirebaseAuth.GetAuth.
63
+ // / function Firebase.Auth.FirebaseAuth.GetAuth.
64
64
// /
65
65
// / For example:
66
66
// / @code{.cs}
@@ -88,12 +88,12 @@ struct SignInResult;
88
88
// / @if cpp_examples
89
89
// /
90
90
// / 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
92
92
// / accounts and credentials.
93
93
// /
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
95
95
// / acquire the firebase::auth::Auth class through the static function
96
- // / @ref firebase::auth::Auth::GetAuth.
96
+ // / firebase::auth::Auth::GetAuth.
97
97
// /
98
98
// / For example:
99
99
// / @code{.cpp}
@@ -128,7 +128,7 @@ struct SignInResult;
128
128
// / @endif
129
129
class Auth {
130
130
public:
131
- // / @brief Results of calls @ref FetchProvidersForEmail.
131
+ // / @brief Results of calls FetchProvidersForEmail.
132
132
// /
133
133
// / <SWIG>
134
134
// / @if swig_examples
@@ -155,7 +155,7 @@ class Auth {
155
155
// / time after the Auth instance is created.
156
156
User current_user ();
157
157
158
- // / @deprecated This is a deprecated method. Please use @ref
158
+ // / @deprecated This is a deprecated method. Please use
159
159
// / current_user instead.
160
160
// /
161
161
// / Synchronously gets the cached current user, or nullptr if there is none.
@@ -247,19 +247,19 @@ class Auth {
247
247
// / @endif
248
248
Future<FetchProvidersResult> FetchProvidersForEmail (const char * email);
249
249
250
- // / Get results of the most recent call to @ref FetchProvidersForEmail.
250
+ // / Get results of the most recent call to FetchProvidersForEmail.
251
251
Future<FetchProvidersResult> FetchProvidersForEmailLastResult () const ;
252
252
253
- // / Asynchronously logs into Firebase with the given @ref Auth token.
253
+ // / Asynchronously logs into Firebase with the given Auth token.
254
254
// /
255
255
// / An error is returned if the token is invalid, expired or otherwise not
256
256
// / accepted by the server.
257
257
Future<AuthResult> SignInWithCustomToken (const char * custom_token);
258
258
259
- // / Get results of the most recent call to @ref SignInWithCustomToken.
259
+ // / Get results of the most recent call to SignInWithCustomToken.
260
260
Future<AuthResult> SignInWithCustomTokenLastResult () const ;
261
261
262
- // / @deprecated This is a deprecated method. Please use @ref
262
+ // / @deprecated This is a deprecated method. Please use
263
263
// / SignInWithCustomToken instead.
264
264
// /
265
265
// / Asynchronously logs into Firebase with the given Auth token.
@@ -271,32 +271,32 @@ class Auth {
271
271
272
272
// / @deprecated
273
273
// /
274
- // / Get results of the most recent call to @ref
274
+ // / Get results of the most recent call to
275
275
// / SignInWithCustomToken_DEPRECATED.
276
276
FIREBASE_DEPRECATED Future<User*> SignInWithCustomTokenLastResult_DEPRECATED ()
277
277
const ;
278
278
279
- // / Convenience method for @ref SignInAndRetrieveDataWithCredential that
279
+ // / Convenience method for SignInAndRetrieveDataWithCredential that
280
280
// / doesn't return additional identity provider data.
281
281
Future<User> SignInWithCredential (const Credential& credential);
282
282
283
283
// / @deprecated
284
284
// /
285
- // / Get results of the most recent call to @ref SignInWithCredential.
285
+ // / Get results of the most recent call to SignInWithCredential.
286
286
Future<User> SignInWithCredentialLastResult () const ;
287
287
288
- // / @deprecated This is a deprecated method. Please use @ref
288
+ // / @deprecated This is a deprecated method. Please use
289
289
// / SignInWithCredential instead.
290
290
// /
291
- // / Convenience method for @ref
291
+ // / Convenience method for
292
292
// / SignInAndRetrieveDataWithCredential_DEPRECATED that doesn't
293
293
// / return additional identity provider data.
294
294
FIREBASE_DEPRECATED Future<User*> SignInWithCredential_DEPRECATED (
295
295
const Credential& credential);
296
296
297
297
// / @deprecated
298
298
// /
299
- // / Get results of the most recent call to @ref
299
+ // / Get results of the most recent call to
300
300
// / SignInWithCredential_DEPRECATED.
301
301
FIREBASE_DEPRECATED Future<User*> SignInWithCredentialLastResult_DEPRECATED ()
302
302
const ;
@@ -313,7 +313,7 @@ class Auth {
313
313
// / preset error code: kAuthErrorUnimplemented.
314
314
Future<AuthResult> SignInWithProvider (FederatedAuthProvider* provider);
315
315
316
- // / @deprecated This is a deprecated method. Please use @ref
316
+ // / @deprecated This is a deprecated method. Please use
317
317
// / SignInWithProvider instead.
318
318
// /
319
319
// / Sign-in a user authenticated via a federated auth provider.
@@ -344,10 +344,10 @@ class Auth {
344
344
const Credential& credential);
345
345
346
346
// / Get results of the most recent call to
347
- // / @ref SignInAndRetrieveDataWithCredential.
347
+ // / SignInAndRetrieveDataWithCredential.
348
348
Future<AuthResult> SignInAndRetrieveDataWithCredentialLastResult () const ;
349
349
350
- // / @deprecated This is a deprecated method. Please use @ref
350
+ // / @deprecated This is a deprecated method. Please use
351
351
// / SignInAndRetrieveDataWithCredential instead.
352
352
// /
353
353
// / Asynchronously logs into Firebase with the given credentials.
@@ -367,7 +367,7 @@ class Auth {
367
367
// / @deprecated
368
368
// /
369
369
// / Get results of the most recent call to
370
- // / @ref SignInAndRetrieveDataWithCredential_DEPRECATED.
370
+ // / SignInAndRetrieveDataWithCredential_DEPRECATED.
371
371
FIREBASE_DEPRECATED Future<SignInResult>
372
372
SignInAndRetrieveDataWithCredentialLastResult_DEPRECATED () const ;
373
373
@@ -426,16 +426,16 @@ class Auth {
426
426
// / @endif
427
427
Future<AuthResult> SignInAnonymously ();
428
428
429
- // / Get results of the most recent call to @ref SignInAnonymously.
429
+ // / Get results of the most recent call to SignInAnonymously.
430
430
Future<AuthResult> SignInAnonymouslyLastResult () const ;
431
431
432
- // / @deprecated This is a deprecated method. Please use @ref SignInAnonymously
432
+ // / @deprecated This is a deprecated method. Please use SignInAnonymously
433
433
// / instead.
434
434
FIREBASE_DEPRECATED Future<User*> SignInAnonymously_DEPRECATED ();
435
435
436
436
// / @deprecated
437
437
// /
438
- // / Get results of the most recent call to @ref SignInAnonymously_DEPRECATED.
438
+ // / Get results of the most recent call to SignInAnonymously_DEPRECATED.
439
439
FIREBASE_DEPRECATED Future<User*> SignInAnonymouslyLastResult_DEPRECATED ()
440
440
const ;
441
441
@@ -445,11 +445,11 @@ class Auth {
445
445
Future<AuthResult> SignInWithEmailAndPassword (const char * email,
446
446
const char * password);
447
447
448
- // / Get results of the most recent call to @ref
448
+ // / Get results of the most recent call to
449
449
// / SignInWithEmailAndPassword.
450
450
Future<AuthResult> SignInWithEmailAndPasswordLastResult () const ;
451
451
452
- // / @deprecated This is a deprecated method. Please use @ref
452
+ // / @deprecated This is a deprecated method. Please use
453
453
// / SignInWithEmailAndPassword instead.
454
454
// /
455
455
// / Signs in using provided email address and password.
@@ -460,7 +460,7 @@ class Auth {
460
460
461
461
// / @deprecated
462
462
// /
463
- // / Get results of the most recent call to @ref
463
+ // / Get results of the most recent call to
464
464
// / SignInWithEmailAndPassword_DEPRECATED.
465
465
FIREBASE_DEPRECATED Future<User*>
466
466
SignInWithEmailAndPasswordLastResult_DEPRECATED () const ;
@@ -474,10 +474,10 @@ class Auth {
474
474
const char * password);
475
475
476
476
// / Get results of the most recent call to
477
- // / @ref CreateUserWithEmailAndPassword.
477
+ // / CreateUserWithEmailAndPassword.
478
478
Future<AuthResult> CreateUserWithEmailAndPasswordLastResult () const ;
479
479
480
- // / @deprecated This is a deprecated method. Please use @ref
480
+ // / @deprecated This is a deprecated method. Please use
481
481
// / CreateUserWithEmailAndPassword instead.
482
482
// /
483
483
// / Creates, and on success, logs in a user with the given email address
@@ -489,7 +489,7 @@ class Auth {
489
489
const char * email, const char * password);
490
490
491
491
// / Get results of the most recent call to
492
- // / @ref CreateUserWithEmailAndPassword_DEPRECATED.
492
+ // / CreateUserWithEmailAndPassword_DEPRECATED.
493
493
FIREBASE_DEPRECATED Future<User*>
494
494
CreateUserWithEmailAndPasswordLastResult_DEPRECATED () const ;
495
495
@@ -564,7 +564,7 @@ class Auth {
564
564
// / @endif
565
565
Future<void > SendPasswordResetEmail (const char * email);
566
566
567
- // / Get results of the most recent call to @ref SendPasswordResetEmail.
567
+ // / Get results of the most recent call to SendPasswordResetEmail.
568
568
Future<void > SendPasswordResetEmailLastResult () const ;
569
569
570
570
#ifndef SWIG
@@ -586,7 +586,7 @@ class Auth {
586
586
// / Use RemoveAuthStateListener to unregister a listener.
587
587
// /
588
588
// / @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,
590
590
// / RemoveAuthStateListener is called automatically.
591
591
void AddAuthStateListener (AuthStateListener* listener);
592
592
@@ -615,7 +615,7 @@ class Auth {
615
615
// / Use RemoveIdTokenListener to unregister a listener.
616
616
// /
617
617
// / @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,
619
619
// / RemoveIdTokenListener is called automatically.
620
620
void AddIdTokenListener (IdTokenListener* listener);
621
621
@@ -744,7 +744,7 @@ class AuthStateListener {
744
744
// / - When the current user is signed out
745
745
// / - When the current user changes
746
746
// /
747
- // / @param[in] auth Disambiguates which @ref Auth instance the event
747
+ // / @param[in] auth Disambiguates which Auth instance the event
748
748
// / corresponds to, in the case where you are using more than one at the same
749
749
// / time.
750
750
virtual void OnAuthStateChanged (Auth* auth) = 0;
@@ -778,7 +778,7 @@ class IdTokenListener {
778
778
// / - When the current user changes
779
779
// / - When there is a change in the current user's token
780
780
// /
781
- // / @param[in] auth Disambiguates which @ref Auth instance the event
781
+ // / @param[in] auth Disambiguates which Auth instance the event
782
782
// / corresponds to, in the case where you are using more than one at the same
783
783
// / time.
784
784
virtual void OnIdTokenChanged (Auth* auth) = 0;
@@ -849,7 +849,7 @@ class FederatedAuthProvider {
849
849
850
850
// / @brief Application sign-in handler.
851
851
// /
852
- // / Invoked in SignIn flows that use @ref Auth::SignInWithProvider.
852
+ // / Invoked in SignIn flows that use Auth::SignInWithProvider.
853
853
// /
854
854
// / The application must implement this method to handle federated auth user
855
855
// / sign-in requests on non-mobile systems.
@@ -865,13 +865,13 @@ class FederatedAuthProvider {
865
865
virtual void OnSignIn (const T& provider_data,
866
866
AuthResultCompletionHandle* completion_handle) {}
867
867
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
870
870
// / instead.
871
871
// /
872
872
// / @brief Application sign-in handler.
873
873
// /
874
- // / Invoked in SignIn flows that use @ref
874
+ // / Invoked in SignIn flows that use
875
875
// / Auth::SignInWithProvider_DEPRECATED.
876
876
// /
877
877
// / The application must implement this method to handle federated auth user
@@ -888,7 +888,7 @@ class FederatedAuthProvider {
888
888
FIREBASE_DEPRECATED virtual void OnSignIn (
889
889
const T& provider_data, AuthCompletionHandle* completion_handle) {}
890
890
891
- // / Completion for OnSignIn events started by a call to @ref
891
+ // / Completion for OnSignIn events started by a call to
892
892
// / Auth::SignInWithProvider.
893
893
// /
894
894
// / Invoke this method once the corresponding OnSignIn has been fulfilled.
@@ -912,7 +912,7 @@ class FederatedAuthProvider {
912
912
913
913
// / @deprecated
914
914
// /
915
- // / Completion for OnSignIn events started by a call to @ref
915
+ // / Completion for OnSignIn events started by a call to
916
916
// / Auth::SignInWithProvider_DEPRECATED.
917
917
// /
918
918
// / Invoke this method once the corresponding OnSignIn has been fulfilled.
@@ -937,7 +937,7 @@ class FederatedAuthProvider {
937
937
938
938
// / @brief Application user account link handler.
939
939
// /
940
- // / Invoked in Link flows that use @ref User::LinkWithProvider.
940
+ // / Invoked in Link flows that use User::LinkWithProvider.
941
941
// /
942
942
// / The application must implement this method to handle federated auth user
943
943
// / link requests on non-mobile systems.
@@ -952,13 +952,13 @@ class FederatedAuthProvider {
952
952
virtual void OnLink (const T& provider_data,
953
953
AuthResultCompletionHandle* completion_handle) {}
954
954
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
957
957
// / instead.
958
958
// /
959
959
// / @brief Application user account link handler.
960
960
// /
961
- // / Invoked in Link flows that use @ref User::LinkWithProvider_DEPRECATED.
961
+ // / Invoked in Link flows that use User::LinkWithProvider_DEPRECATED.
962
962
// /
963
963
// / @brief Application user account link handler.
964
964
// /
@@ -998,7 +998,7 @@ class FederatedAuthProvider {
998
998
999
999
// / @deprecated
1000
1000
// /
1001
- // / Completion for OnLink events started by a call to @ref
1001
+ // / Completion for OnLink events started by a call to
1002
1002
// / User::LinkWithProvider_DEPRECATED.
1003
1003
// /
1004
1004
// / Invoke this method once the OnLink process has been fulfilled. This
@@ -1037,8 +1037,8 @@ class FederatedAuthProvider {
1037
1037
const T& provider_data, AuthResultCompletionHandle* completion_handle) {
1038
1038
}
1039
1039
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
1042
1042
// / User::ReauthenticateWithProvider instead.
1043
1043
// /
1044
1044
// / @brief Application user re-authentication handler.
0 commit comments