UI\ClientScriptManager.cs (21)
262public string GetCallbackEventReference(Control control, string argument, string clientCallback, string context) {
266public string GetCallbackEventReference(Control control, string argument, string clientCallback, string context, bool useAsync) {
274public string GetCallbackEventReference(Control control, string argument, string clientCallback, string context, string clientErrorCallback, bool useAsync) {
327public string GetPostBackClientHyperlink(Control control, string argument) {
336public string GetPostBackClientHyperlink(Control control, string argument, bool registerForEventValidation) {
348internal string GetPostBackClientHyperlink(Control control, string argument, bool escapePercent, bool registerForEventValidation) {
355public string GetPostBackEventReference(Control control, string argument) {
359public string GetPostBackEventReference(Control control, string argument, bool registerForEventValidation) {
372private string GetPostBackEventReference(Control control, string argument, bool forUrl, bool registerForEventValidation) {
387controlID != null && controlID.IndexOf(Control.LEGACY_ID_SEPARATOR) >= 0) {
389controlID = controlID.Replace(Control.LEGACY_ID_SEPARATOR, Control.ID_SEPARATOR);
669internal void RegisterArrayDeclaration(Control control, string arrayName, string arrayValue) {
716internal void RegisterExpandoAttribute(Control control, string controlId, string attributeName, string attributeValue, bool encode) {
756internal void RegisterHiddenField(Control control, string hiddenFieldName, string hiddenFieldValue) {
795internal void RegisterClientScriptBlock(Control control, Type type, string key, string script, bool addScriptTags) {
838internal void RegisterClientScriptInclude(Control control, Type type, string key, string url) {
860internal void RegisterClientScriptResource(Control control, Type type, string resourceName) {
871internal void RegisterDefaultButtonScript(Control button, HtmlTextWriter writer, bool useAddAttribute) {
905internal void RegisterOnSubmitStatement(Control control, Type type, string key, string script) {
1018internal void RegisterStartupScript(Control control, Type type, string key, string script, bool addScriptTags) {
UI\IScriptManager.cs (10)
18void RegisterArrayDeclaration(Control control, string arrayName, string arrayValue);
19void RegisterClientScriptBlock(Control control, Type type, string key, string script, bool addScriptTags);
20void RegisterClientScriptInclude(Control control, Type type, string key, string url);
21void RegisterClientScriptResource(Control control, Type type, string resourceName);
22void RegisterDispose(Control control, string disposeScript);
23void RegisterExpandoAttribute(Control control, string controlId, string attributeName, string attributeValue, bool encode);
24void RegisterHiddenField(Control control, string hiddenFieldName, string hiddenFieldValue);
25void RegisterOnSubmitStatement(Control control, Type type, string key, string script);
26void RegisterPostBackControl(Control control);
27void RegisterStartupScript(Control control, Type type, string key, string script, bool addScriptTags);
UI\PartialCachingControl.cs (12)
58internal Control _cachedCtrl;
82internal override void InitRecursive(Control namingContainer) {
246internal abstract Control CreateCachedControl();
710internal override Control CreateCachedControl() {
723static public void BuildCachedControl(Control parent, string ctrlID, string guid,
735static public void BuildCachedControl(Control parent, string ctrlID, string guid,
742static public void BuildCachedControl(Control parent, string ctrlID, string guid,
765public Control CachedControl { get { return _cachedCtrl; } }
789internal override Control CreateCachedControl() {
791Control cachedControl;
794cachedControl = (Control) _objectFactory.CreateInstance();
798cachedControl = (Control) HttpRuntime.CreatePublicInstance(_createCachedControlType, _args);
UI\WebControls\ValidatorCompatibilityHelper.cs (6)
16public static void RegisterArrayDeclaration(Control control, string arrayName, string arrayValue) {
28public static void RegisterClientScriptResource(Control control, string resourceName) {
40public static void RegisterClientScriptResource(Control control, Type type, string resourceName) {
51public static void RegisterExpandoAttribute(Control control, string controlId, string attributeName, string attributeValue, bool encode) {
62public static void RegisterOnSubmitStatement(Control control, Type type, string key, string script) {
73public static void RegisterStartupScript(Control control, Type type, string key, string script, bool addScriptTags) {
UI\WebParts\BlobPersonalizationState.cs (14)
104private void ApplyPersonalization(Control control, string personalizationID, bool isWebPartManager,
368Control containedControl = genericWebPart.ChildControl;
425return ID + Control.ID_SEPARATOR + genericWebPartID;
432private string CreatePersonalizationID(Control control, WebPart associatedGenericWebPart) {
579private void ExtractPersonalization(Control control, string personalizationID, bool isWebPartManager,
785Control containedControl = genericWebPart.ChildControl;
811internal static IDictionary GetPersonalizedProperties(Control control, PersonalizationScope scope) {
823private static IDictionary GetPersonalizedProperties(Control control,
1108private void SetControlDirty(Control control, string personalizationID, bool isWebPartManager,
1127internal static IDictionary SetPersonalizedProperties(Control control, IDictionary propertyState) {
1138private static IDictionary SetPersonalizedProperties(Control control, IDictionary personalizableProperties,
1199Control containedControl = genericWebPart.ChildControl;
1226public bool IsMatchingControlType(Control c) {
1257public Control _control;