2 instantiations of ScriptKey
System.Web (2)
UI\ClientScriptManager.cs (2)
251return new ScriptKey(type, key); 255return new ScriptKey(type, key, true, isResource);
15 references to ScriptKey
System.Web (15)
UI\ClientScriptManager.cs (11)
250internal static ScriptKey CreateScriptKey(Type type, string key) { 254internal static ScriptKey CreateScriptIncludeKey(Type type, string key, bool isResource) { 916internal void RegisterOnSubmitStatementInternal(ScriptKey key, string script) { 944internal void RegisterScriptBlock(ScriptKey key, string script, ClientAPIRegisterType type) { 973private void RegisterScriptBlock(ScriptKey key, string script, ref ListDictionary scriptBlocks, ref ArrayList scriptList, bool needsScriptTags) { 980Tuple<ScriptKey, String, Boolean> entry = new Tuple<ScriptKey, String, Boolean>(key, script, needsScriptTags); 1173foreach (Tuple<ScriptKey, String, Boolean> entry in scripts) { 1175ScriptKey scriptKey = entry.Item1; 1471ScriptKey key = (ScriptKey)o;
UI\PartialCachingControl.cs (4)
32internal ScriptKey Key; 595ScriptKey scriptKey, string stringParam2) { 632internal void RegisterScriptBlock(ClientAPIRegisterType type, ScriptKey key, string script) { 636internal void RegisterOnSubmitStatement(ScriptKey key, string script) {