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