QueryString.Inequality(QueryString, QueryString) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Evaluates if one query string is not equal to another.
public:
static bool operator !=(Microsoft::AspNetCore::Http::QueryString left, Microsoft::AspNetCore::Http::QueryString right);
public static bool operator != (Microsoft.AspNetCore.Http.QueryString left, Microsoft.AspNetCore.Http.QueryString right);
static member op_Inequality : Microsoft.AspNetCore.Http.QueryString * Microsoft.AspNetCore.Http.QueryString -> bool
Public Shared Operator != (left As QueryString, right As QueryString) As Boolean
Parameters
- left
- QueryString
A QueryString instance.
- right
- QueryString
A QueryString instance.
Returns
true
if the query strings are not equal.