File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
FirebaseAdmin/FirebaseAdmin/Auth Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -240,19 +240,19 @@ public async Task<FirebaseToken> VerifyIdTokenAsync(
240240 }
241241
242242 /// <summary>
243- /// Sets the specified custom claims on an existing user account. A null claims value
243+ /// Sets the specified custom claims on an existing user account. A null claims value
244244 /// removes any claims currently set on the user account. The claims should serialize into
245245 /// a valid JSON string. The serialized claims must not be larger than 1000 characters.
246246 /// </summary>
247247 /// <exception cref="ArgumentException">If <paramref name="uid"/> is null, empty or longer
248- /// than 128 characters. Or, if the serialized <paramref name="claims"/> is larger than 1000
248+ /// than 128 characters. Or, if the serialized <paramref name="claims"/> is larger than 1000
249249 /// characters.</exception>
250- /// <param name="uid">The user ID string for the custom claims will be set. Must not be null
250+ /// <param name="uid">The user ID string for the custom claims will be set. Must not be null
251251 /// or longer than 128 characters.
252252 /// </param>
253253 /// <param name="claims">The claims to be stored on the user account, and made
254- /// available to Firebase security rules. These must be serializable to JSON, and after
255- /// serialization it should not be larger than 1000 characters.</param>
254+ /// available to Firebase security rules. These must be serializable to JSON, and the
255+ /// serialized claims should not be larger than 1000 characters.</param>
256256 public async Task SetCustomUserClaimsAsync ( string uid , IReadOnlyDictionary < string , object > claims )
257257 {
258258 lock ( _lock )
You can’t perform that action at this time.
0 commit comments