4 writes to Name
System.Web.Extensions (4)
UI\ScriptManager.cs (1)
1485sm.Scripts.Add(new ScriptReference() { Name = resourceName });
UI\ScriptReference.cs (2)
36Name = name; 49Name = name;
UI\ScriptRegistrationManager.cs (1)
266Name = resourceName,
7 references to Name
System.Web.Extensions (7)
UI\ScriptManager.cs (2)
1065if (scriptReference.IsAjaxFrameworkScript(this) && (scriptReference.Name.StartsWith("MicrosoftAjax.", StringComparison.OrdinalIgnoreCase) || scriptReference.Name.StartsWith("MicrosoftAjaxCore.", StringComparison.OrdinalIgnoreCase))) {
UI\ScriptReference.cs (4)
331bool hasName = !String.IsNullOrEmpty(Name); 539if (!String.IsNullOrEmpty(Name)) { 540return Name; 563string name = scriptReference.Name;
UI\ScriptResourceMapping.cs (1)
68string name = scriptReference.Name;