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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
//------------------------------------------------------------------------------
// <copyright file="ParseChildrenAsPropertiesAttribute.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI {
using System;
using System.Collections;
using System.ComponentModel;
using System.Security.Permissions;
using System.Web.Util;
/// <devdoc>
/// Define the metadata attribute that controls use to mark the fact
/// that their children are in fact properties.
/// Furthermore, if a string is passed in the constructor, it specifies
/// the name of the defaultproperty.
/// </devdoc>
[AttributeUsage(AttributeTargets.Class)]
public sealed class ParseChildrenAttribute : Attribute {
public static readonly ParseChildrenAttribute ParseAsChildren = new ParseChildrenAttribute(false, false);
public static readonly ParseChildrenAttribute ParseAsProperties = new ParseChildrenAttribute(true, false);
public static readonly ParseChildrenAttribute Default = ParseAsChildren;
private bool _childrenAsProps;
private string _defaultProperty;
private Type _childControlType;
private bool _allowChanges = true;
/// <devdoc>
/// Needed to use named parameters (ASURT 78869)
/// </devdoc>
public ParseChildrenAttribute() : this(false, null) {
}
/// <devdoc>
/// </devdoc>
public ParseChildrenAttribute(bool childrenAsProperties) : this(childrenAsProperties, null) {
}
public ParseChildrenAttribute(Type childControlType) : this(false, null) {
if (childControlType == null) {
throw new ArgumentNullException("childControlType");
}
_childControlType = childControlType;
}
/// <devdoc>
/// Needed to create immutable static readonly instances of this attribute
/// </devdoc>
private ParseChildrenAttribute(bool childrenAsProperties, bool allowChanges) : this(childrenAsProperties, null) {
_allowChanges = allowChanges;
}
/// <devdoc>
/// </devdoc>
public ParseChildrenAttribute(bool childrenAsProperties, string defaultProperty) {
_childrenAsProps = childrenAsProperties;
if (_childrenAsProps == true) {
_defaultProperty = defaultProperty;
}
}
/// <devdoc>
/// <para>Indicates the allowed child control type.
/// This property is read-only.</para>
/// </devdoc>
public Type ChildControlType {
get {
if (_childControlType == null) {
return typeof(System.Web.UI.Control);
}
return _childControlType;
}
}
/// <devdoc>
/// </devdoc>
public bool ChildrenAsProperties {
get {
return _childrenAsProps;
}
set {
if (_allowChanges == false) {
throw new NotSupportedException();
}
_childrenAsProps = value;
}
}
/// <devdoc>
/// </devdoc>
public string DefaultProperty {
get {
if (_defaultProperty == null) {
return String.Empty;
}
return _defaultProperty;
}
set {
if (_allowChanges == false) {
throw new NotSupportedException();
}
_defaultProperty = value;
}
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
public override int GetHashCode() {
if (_childrenAsProps == false) {
return HashCodeCombiner.CombineHashCodes(_childrenAsProps.GetHashCode(), _childControlType.GetHashCode());
}
else {
return HashCodeCombiner.CombineHashCodes(_childrenAsProps.GetHashCode(), DefaultProperty.GetHashCode());
}
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
public override bool Equals(object obj) {
if (obj == this) {
return true;
}
ParseChildrenAttribute pca = obj as ParseChildrenAttribute;
if (pca != null) {
if (_childrenAsProps == false) {
return pca.ChildrenAsProperties == false &&
pca._childControlType == _childControlType;
}
else {
return pca.ChildrenAsProperties && (DefaultProperty.Equals(pca.DefaultProperty));
}
}
return false;
}
/// <internalonly/>
/// <devdoc>
/// </devdoc>
public override bool IsDefaultAttribute() {
return this.Equals(Default);
}
}
}
|