blob: a1a85b3287c8c78cccf5d31eae6f9bec3824c65d (
plain)
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
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using Microsoft.Internal.Web.Utils;
namespace System.Web.Razor
{
/// <summary>
/// Specifies a Razor directive that is rendered as an attribute on the generated class.
/// </summary>
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
public sealed class RazorDirectiveAttribute : Attribute
{
private readonly object _typeId = new object();
public RazorDirectiveAttribute(string name, string value)
{
if (String.IsNullOrEmpty(name))
{
throw new ArgumentException(CommonResources.Argument_Cannot_Be_Null_Or_Empty, "name");
}
Name = name;
Value = value;
}
public override object TypeId
{
get { return _typeId; }
}
public string Name { get; private set; }
public string Value { get; private set; }
public override bool Equals(object obj)
{
RazorDirectiveAttribute attribute = obj as RazorDirectiveAttribute;
return attribute != null &&
Name.Equals(attribute.Name, StringComparison.OrdinalIgnoreCase) &&
StringComparer.OrdinalIgnoreCase.Equals(Value, attribute.Value);
}
public override int GetHashCode()
{
return (StringComparer.OrdinalIgnoreCase.GetHashCode(Name) * 31) +
(Value == null ? 0 : StringComparer.OrdinalIgnoreCase.GetHashCode(Value));
}
}
}
|