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
/// Reads HTML form URL encoded data provided in the <see cref="Uri"/> query component as an <see cref="Object"/> of the given <paramref name="type"/>.
/// </summary>
/// <param name="address">The <see cref="Uri"/> instance from which to read.</param>
/// <param name="type">The type of the object to read.</param>
/// <param name="value">An object to be initialized with this instance or null if the conversion cannot be performed.</param>
/// <returns><c>true</c> if the query component can be read as the specified type; otherwise <c>false</c>.</returns>
[SuppressMessage("Microsoft.Design","CA1007:UseGenericsWhereAppropriate",Justification="This is the non-generic version.")]
/// Reads HTML form URL encoded data provided in the <see cref="Uri"/> query component as an <see cref="Object"/> of type <typeparamref name="T"/>.
/// </summary>
/// <typeparam name="T">The type of the object to read.</typeparam>
/// <param name="address">The <see cref="Uri"/> instance from which to read.</param>
/// <param name="value">An object to be initialized with this instance or null if the conversion cannot be performed.</param>
/// <returns><c>true</c> if the query component can be read as the specified type; otherwise <c>false</c>.</returns>
[SuppressMessage("Microsoft.Design","CA1004:GenericMethodsShouldProvideTypeParameter",Justification="The T represents the output parameter, not an input parameter.")]