-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
QueryStringOperator.cs
75 lines (66 loc) · 3.99 KB
/
QueryStringOperator.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.ComponentModel;
namespace Azure.ResourceManager.Cdn.Models
{
/// <summary> Describes operator to be matched. </summary>
public readonly partial struct QueryStringOperator : IEquatable<QueryStringOperator>
{
private readonly string _value;
/// <summary> Initializes a new instance of <see cref="QueryStringOperator"/>. </summary>
/// <exception cref="ArgumentNullException"> <paramref name="value"/> is null. </exception>
public QueryStringOperator(string value)
{
_value = value ?? throw new ArgumentNullException(nameof(value));
}
private const string AnyValue = "Any";
private const string EqualValue = "Equal";
private const string ContainsValue = "Contains";
private const string BeginsWithValue = "BeginsWith";
private const string EndsWithValue = "EndsWith";
private const string LessThanValue = "LessThan";
private const string LessThanOrEqualValue = "LessThanOrEqual";
private const string GreaterThanValue = "GreaterThan";
private const string GreaterThanOrEqualValue = "GreaterThanOrEqual";
private const string RegExValue = "RegEx";
/// <summary> Any. </summary>
public static QueryStringOperator Any { get; } = new QueryStringOperator(AnyValue);
/// <summary> Equal. </summary>
public static QueryStringOperator Equal { get; } = new QueryStringOperator(EqualValue);
/// <summary> Contains. </summary>
public static QueryStringOperator Contains { get; } = new QueryStringOperator(ContainsValue);
/// <summary> BeginsWith. </summary>
public static QueryStringOperator BeginsWith { get; } = new QueryStringOperator(BeginsWithValue);
/// <summary> EndsWith. </summary>
public static QueryStringOperator EndsWith { get; } = new QueryStringOperator(EndsWithValue);
/// <summary> LessThan. </summary>
public static QueryStringOperator LessThan { get; } = new QueryStringOperator(LessThanValue);
/// <summary> LessThanOrEqual. </summary>
public static QueryStringOperator LessThanOrEqual { get; } = new QueryStringOperator(LessThanOrEqualValue);
/// <summary> GreaterThan. </summary>
public static QueryStringOperator GreaterThan { get; } = new QueryStringOperator(GreaterThanValue);
/// <summary> GreaterThanOrEqual. </summary>
public static QueryStringOperator GreaterThanOrEqual { get; } = new QueryStringOperator(GreaterThanOrEqualValue);
/// <summary> RegEx. </summary>
public static QueryStringOperator RegEx { get; } = new QueryStringOperator(RegExValue);
/// <summary> Determines if two <see cref="QueryStringOperator"/> values are the same. </summary>
public static bool operator ==(QueryStringOperator left, QueryStringOperator right) => left.Equals(right);
/// <summary> Determines if two <see cref="QueryStringOperator"/> values are not the same. </summary>
public static bool operator !=(QueryStringOperator left, QueryStringOperator right) => !left.Equals(right);
/// <summary> Converts a string to a <see cref="QueryStringOperator"/>. </summary>
public static implicit operator QueryStringOperator(string value) => new QueryStringOperator(value);
/// <inheritdoc />
[EditorBrowsable(EditorBrowsableState.Never)]
public override bool Equals(object obj) => obj is QueryStringOperator other && Equals(other);
/// <inheritdoc />
public bool Equals(QueryStringOperator other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase);
/// <inheritdoc />
[EditorBrowsable(EditorBrowsableState.Never)]
public override int GetHashCode() => _value?.GetHashCode() ?? 0;
/// <inheritdoc />
public override string ToString() => _value;
}
}