1 write to properties
System.Web.Extensions (1)
UI\WebControls\Dynamic.cs (1)
227this.properties = properties.ToArray();
8 references to properties
System.Web.Extensions (8)
UI\WebControls\Dynamic.cs (8)
243if (properties.Length != other.properties.Length) return false; 244for (int i = 0; i < properties.Length; i++) { 245if (properties[i].Name != other.properties[i].Name || 246properties[i].Type != other.properties[i].Type) return false; 299type = CreateDynamicClass(signature.properties);