You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Ensures that the span represents a valid email address using the default email regular expression
137
+
/// defined in <see cref="RegularExpressions.EmailRegex" />, or otherwise throws your custom exception.
138
+
/// </summary>
139
+
/// <param name="parameter">The span that will be validated as an email address.</param>
140
+
/// <param name="exceptionFactory">The delegate that creates your custom exception. A string created from <paramref name="parameter" /> is passed to this delegate.</param>
141
+
/// <exception cref="Exception">Your custom exception thrown when <paramref name="parameter" /> is no valid email address.</exception>
/// Ensures that the span represents a valid email address using the provided regular expression,
187
+
/// or otherwise throws your custom exception.
188
+
/// </summary>
189
+
/// <param name="parameter">The span that will be validated as an email address.</param>
190
+
/// <param name="emailAddressPattern">The regular expression that determines if the span represents a valid email.</param>
191
+
/// <param name="exceptionFactory">The delegate that creates your custom exception. A string created from <paramref name="parameter" /> and <paramref name="emailAddressPattern" /> are passed to this delegate.</param>
192
+
/// <exception cref="Exception">Your custom exception thrown when <paramref name="parameter" /> is no valid email address or when <paramref name="emailAddressPattern" /> is null.</exception>
/// Ensures that the span represents a valid email address using the default email regular expression
230
+
/// defined in <see cref="RegularExpressions.EmailRegex" />, or otherwise throws your custom exception.
231
+
/// </summary>
232
+
/// <param name="parameter">The span that will be validated as an email address.</param>
233
+
/// <param name="exceptionFactory">The delegate that creates your custom exception. A string created from <paramref name="parameter" /> is passed to this delegate.</param>
234
+
/// <exception cref="Exception">Your custom exception thrown when <paramref name="parameter" /> is no valid email address.</exception>
/// Ensures that the span represents a valid email address using the provided regular expression,
270
+
/// or otherwise throws your custom exception.
271
+
/// </summary>
272
+
/// <param name="parameter">The span that will be validated as an email address.</param>
273
+
/// <param name="emailAddressPattern">The regular expression that determines if the span represents a valid email.</param>
274
+
/// <param name="exceptionFactory">The delegate that creates your custom exception. A string created from <paramref name="parameter" /> and <paramref name="emailAddressPattern" /> are passed to this delegate.</param>
275
+
/// <exception cref="Exception">Your custom exception thrown when <paramref name="parameter" /> is no valid email address or when <paramref name="emailAddressPattern" /> is null.</exception>
/// Ensures that the memory represents a valid email address using the default email regular expression
308
+
/// defined in <see cref="RegularExpressions.EmailRegex" />, or otherwise throws your custom exception.
309
+
/// </summary>
310
+
/// <param name="parameter">The memory that will be validated as an email address.</param>
311
+
/// <param name="exceptionFactory">The delegate that creates your custom exception. A string created from <paramref name="parameter" /> is passed to this delegate.</param>
312
+
/// <exception cref="Exception">Your custom exception thrown when <paramref name="parameter" /> is no valid email address.</exception>
/// Ensures that the memory represents a valid email address using the provided regular expression,
348
+
/// or otherwise throws your custom exception.
349
+
/// </summary>
350
+
/// <param name="parameter">The memory that will be validated as an email address.</param>
351
+
/// <param name="emailAddressPattern">The regular expression that determines if the memory represents a valid email.</param>
352
+
/// <param name="exceptionFactory">The delegate that creates your custom exception. A string created from <paramref name="parameter" /> and <paramref name="emailAddressPattern" /> are passed to this delegate.</param>
353
+
/// <exception cref="Exception">Your custom exception thrown when <paramref name="parameter" /> is no valid email address or when <paramref name="emailAddressPattern" /> is null.</exception>
/// Ensures that the memory represents a valid email address using the default email regular expression
386
+
/// defined in <see cref="RegularExpressions.EmailRegex" />, or otherwise throws your custom exception.
387
+
/// </summary>
388
+
/// <param name="parameter">The memory that will be validated as an email address.</param>
389
+
/// <param name="exceptionFactory">The delegate that creates your custom exception. A string created from <paramref name="parameter" /> is passed to this delegate.</param>
390
+
/// <exception cref="Exception">Your custom exception thrown when <paramref name="parameter" /> is no valid email address.</exception>
/// Ensures that the memory represents a valid email address using the provided regular expression,
426
+
/// or otherwise throws your custom exception.
427
+
/// </summary>
428
+
/// <param name="parameter">The memory that will be validated as an email address.</param>
429
+
/// <param name="emailAddressPattern">The regular expression that determines if the memory represents a valid email.</param>
430
+
/// <param name="exceptionFactory">The delegate that creates your custom exception. A string created from <paramref name="parameter" /> and <paramref name="emailAddressPattern" /> are passed to this delegate.</param>
431
+
/// <exception cref="Exception">Your custom exception thrown when <paramref name="parameter" /> is no valid email address or when <paramref name="emailAddressPattern" /> is null.</exception>
0 commit comments