File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
FirebaseAdmin/FirebaseAdmin/Auth Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ public async Task<FirebaseToken> VerifyIdTokenAsync(
282282
283283 /// <summary>
284284 /// Sets the specified custom claims on an existing user account. A null claims value
285- /// removes any claims currently set on the user account. The claims should serialize into
285+ /// removes any claims currently set on the user account. The claims must serialize into
286286 /// a valid JSON string. The serialized claims must not be larger than 1000 characters.
287287 /// </summary>
288288 /// <returns>A task that completes when the claims have been set.</returns>
@@ -293,8 +293,8 @@ public async Task<FirebaseToken> VerifyIdTokenAsync(
293293 /// or longer than 128 characters.
294294 /// </param>
295295 /// <param name="claims">The claims to be stored on the user account, and made
296- /// available to Firebase security rules. These must be serializable to JSON, and after
297- /// serialization it should not be larger than 1000 characters.</param>
296+ /// available to Firebase security rules. These must be serializable to JSON, and the
297+ /// serialized claims should not be larger than 1000 characters.</param>
298298 public async Task SetCustomUserClaimsAsync ( string uid , IReadOnlyDictionary < string , object > claims )
299299 {
300300 lock ( this . authLock )
You can’t perform that action at this time.
0 commit comments