Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / Substitution.cs / 1 / Substitution.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Globalization; using System.Security.Permissions; using System.Web; using System.Web.UI; ////// [ DefaultProperty("MethodName"), Designer("System.Web.UI.Design.WebControls.SubstitutionDesigner, " + AssemblyRef.SystemDesign), ParseChildren(true), PersistChildren(false), ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class Substitution : Control { ////// /// public Substitution() { } ////// /// [ DefaultValue(""), WebCategory("Behavior"), WebSysDescription(SR.Substitution_MethodNameDescr) ] public virtual string MethodName { get { string s = ViewState["MethodName"] as string; return s == null? String.Empty : s; } set { ViewState["MethodName"] = value; } } protected override ControlCollection CreateControlCollection() { return new EmptyControlCollection(this); } // SECURITY CODE // [ReflectionPermission(SecurityAction.Assert, Flags=ReflectionPermissionFlag.MemberAccess)] private HttpResponseSubstitutionCallback GetDelegate(Type targetType, string methodName) { return (HttpResponseSubstitutionCallback)Delegate.CreateDelegate( typeof(HttpResponseSubstitutionCallback), targetType, methodName); } protected internal override void OnPreRender(EventArgs e) { base.OnPreRender(e); // Control parent = Parent; while (parent != null) { if (parent is BasePartialCachingControl) { throw new HttpException( SR.GetString(SR.Substitution_CannotBeInCachedControl)); } parent = parent.Parent; } } protected internal override void Render(HtmlTextWriter writer) { RenderMarkup(writer); } internal void RenderMarkup(HtmlTextWriter writer) { if (MethodName.Length == 0) { return; } TemplateControl target = TemplateControl; if (target == null) { return; } // get the delegate to the method HttpResponseSubstitutionCallback callback = null; try { callback = GetDelegate(target.GetType(), MethodName); } catch { } if (callback == null) { throw new HttpException( SR.GetString(SR.Substitution_BadMethodName, MethodName)); } // add the substitution to the response Page.Response.WriteSubstitution(callback); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StrokeNode.cs
- ConnectionString.cs
- ExitEventArgs.cs
- ColorBlend.cs
- ScrollContentPresenter.cs
- XmlDictionaryReader.cs
- ComponentCollection.cs
- PointConverter.cs
- ToolStripSeparator.cs
- securestring.cs
- DiscriminatorMap.cs
- ObjectReaderCompiler.cs
- SrgsRule.cs
- AssertFilter.cs
- ConfigurationStrings.cs
- TemplateNameScope.cs
- ActivationWorker.cs
- OpCopier.cs
- _CommandStream.cs
- IntranetCredentialPolicy.cs
- EncoderNLS.cs
- ClientSponsor.cs
- HwndProxyElementProvider.cs
- MenuCommands.cs
- RedirectionProxy.cs
- TreePrinter.cs
- PageRequestManager.cs
- HScrollBar.cs
- TreeWalkHelper.cs
- CheckedListBox.cs
- StyleSheetComponentEditor.cs
- WindowsIPAddress.cs
- TextSelectionProcessor.cs
- SharingService.cs
- DefaultMemberAttribute.cs
- RoamingStoreFileUtility.cs
- XamlValidatingReader.cs
- TransformGroup.cs
- ListViewItem.cs
- FontFamily.cs
- FilterException.cs
- HandlerWithFactory.cs
- LOSFormatter.cs
- RegexInterpreter.cs
- UIPermission.cs
- XpsStructure.cs
- TextParagraph.cs
- SwitchLevelAttribute.cs
- SymmetricAlgorithm.cs
- ConfigurationManagerInternalFactory.cs
- SamlConstants.cs
- TextRangeProviderWrapper.cs
- WebPartConnectionsCancelVerb.cs
- InvokeHandlers.cs
- AssemblyBuilder.cs
- DataAdapter.cs
- PropertyPushdownHelper.cs
- XmlImplementation.cs
- MetadataItemEmitter.cs
- DesignerAdapterAttribute.cs
- ByteStorage.cs
- DatagridviewDisplayedBandsData.cs
- SqlExpressionNullability.cs
- ComponentRenameEvent.cs
- DbProviderFactories.cs
- ResolveNameEventArgs.cs
- DataServiceHostFactory.cs
- DynamicRendererThreadManager.cs
- PathSegment.cs
- DataColumnMapping.cs
- DateTimeSerializationSection.cs
- HttpListenerRequest.cs
- CustomSignedXml.cs
- ServiceCredentialsElement.cs
- Catch.cs
- FixedSOMGroup.cs
- hebrewshape.cs
- PermissionAttributes.cs
- DecoderFallback.cs
- Label.cs
- CngKey.cs
- DefaultHttpHandler.cs
- ListSortDescriptionCollection.cs
- CacheDict.cs
- NativeMethodsCLR.cs
- Monitor.cs
- QilFunction.cs
- BrowserCapabilitiesCompiler.cs
- EnvelopedSignatureTransform.cs
- StorageInfo.cs
- MILUtilities.cs
- SqlConnectionStringBuilder.cs
- AspCompat.cs
- RelationshipFixer.cs
- BindableTemplateBuilder.cs
- ObjectConverter.cs
- EntityContainerAssociationSet.cs
- GatewayDefinition.cs
- WebPartTracker.cs
- SqlUserDefinedAggregateAttribute.cs