e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
85 lines
5.2 KiB
C#
85 lines
5.2 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="ValidatorCompatibilityHelper.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Web.UI.WebControls {
|
|
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Globalization;
|
|
using System.Reflection;
|
|
using System.Web.Util;
|
|
|
|
// Needed to support Validators in AJAX 1.0 (Windows OS Bugs 2015831)
|
|
internal static class ValidatorCompatibilityHelper {
|
|
public static void RegisterArrayDeclaration(Control control, string arrayName, string arrayValue) {
|
|
Type scriptManagerType = control.Page.ScriptManagerType;
|
|
Debug.Assert(scriptManagerType != null);
|
|
|
|
scriptManagerType.InvokeMember("RegisterArrayDeclaration",
|
|
BindingFlags.Public | BindingFlags.Static | BindingFlags.InvokeMethod,
|
|
null, /*binder*/
|
|
null, /*target*/
|
|
new object[] {control, arrayName, arrayValue});
|
|
}
|
|
|
|
[SuppressMessage("Microsoft.Globalization", "CA1304:SpecifyCultureInfo", MessageId = "System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[])", Justification = @"The default is for the thread's culture to be used, which is fine.")]
|
|
public static void RegisterClientScriptResource(Control control, string resourceName) {
|
|
Type scriptManagerType = control.Page.ScriptManagerType;
|
|
Debug.Assert(scriptManagerType != null);
|
|
|
|
scriptManagerType.InvokeMember("RegisterNamedClientScriptResource",
|
|
BindingFlags.Public | BindingFlags.Static | BindingFlags.InvokeMethod,
|
|
binder: null,
|
|
target: null,
|
|
args: new object[] { control, resourceName });
|
|
}
|
|
|
|
[SuppressMessage("Microsoft.Globalization", "CA1304:SpecifyCultureInfo", MessageId = "System.Type.InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[])", Justification = @"The default is for the thread's culture to be used, which is fine.")]
|
|
public static void RegisterClientScriptResource(Control control, Type type, string resourceName) {
|
|
Type scriptManagerType = control.Page.ScriptManagerType;
|
|
Debug.Assert(scriptManagerType != null);
|
|
|
|
scriptManagerType.InvokeMember("RegisterClientScriptResource",
|
|
BindingFlags.Public | BindingFlags.Static | BindingFlags.InvokeMethod,
|
|
null, /*binder*/
|
|
null, /*target*/
|
|
new object[] {control, type, resourceName});
|
|
}
|
|
|
|
public static void RegisterExpandoAttribute(Control control, string controlId, string attributeName, string attributeValue, bool encode) {
|
|
Type scriptManagerType = control.Page.ScriptManagerType;
|
|
Debug.Assert(scriptManagerType != null);
|
|
|
|
scriptManagerType.InvokeMember("RegisterExpandoAttribute",
|
|
BindingFlags.Public | BindingFlags.Static | BindingFlags.InvokeMethod,
|
|
null, /*binder*/
|
|
null, /*target*/
|
|
new object[] {control, controlId, attributeName, attributeValue, encode});
|
|
}
|
|
|
|
public static void RegisterOnSubmitStatement(Control control, Type type, string key, string script) {
|
|
Type scriptManagerType = control.Page.ScriptManagerType;
|
|
Debug.Assert(scriptManagerType != null);
|
|
|
|
scriptManagerType.InvokeMember("RegisterOnSubmitStatement",
|
|
BindingFlags.Public | BindingFlags.Static | BindingFlags.InvokeMethod,
|
|
null, /*binder*/
|
|
null, /*target*/
|
|
new object[] {control, type, key, script});
|
|
}
|
|
|
|
public static void RegisterStartupScript(Control control, Type type, string key, string script, bool addScriptTags) {
|
|
Type scriptManagerType = control.Page.ScriptManagerType;
|
|
Debug.Assert(scriptManagerType != null);
|
|
|
|
scriptManagerType.InvokeMember("RegisterStartupScript",
|
|
BindingFlags.Public | BindingFlags.Static | BindingFlags.InvokeMethod,
|
|
null, /*binder*/
|
|
null, /*target*/
|
|
new object[] {control, type, key, script, addScriptTags});
|
|
}
|
|
}
|
|
}
|