Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / UI / HtmlFormWrapper.cs / 1305376 / HtmlFormWrapper.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections; using System.Diagnostics; using System.Web.UI; using System.Web.UI.HtmlControls; namespace System.Web.UI { internal sealed class HtmlFormWrapper : IHtmlForm { private HtmlForm _form; public HtmlFormWrapper(HtmlForm form) { Debug.Assert(form != null); _form = form; } #region IHtmlForm Members string IHtmlForm.ClientID { get { return _form.ClientID; } } string IHtmlForm.Method { get { return _form.Method; } } void IHtmlForm.RenderControl(HtmlTextWriter writer) { _form.RenderControl(writer); } void IHtmlForm.SetRenderMethodDelegate(RenderMethod renderMethod) { _form.SetRenderMethodDelegate(renderMethod); } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PropertyGrid.cs
- QilXmlReader.cs
- GPRECTF.cs
- TableLayoutRowStyleCollection.cs
- IntPtr.cs
- XmlSchemaSequence.cs
- TextDecorationLocationValidation.cs
- UpdateTranslator.cs
- SqlInternalConnection.cs
- TextAutomationPeer.cs
- HtmlControl.cs
- Scheduler.cs
- GridViewSelectEventArgs.cs
- DataViewSetting.cs
- ThemeDictionaryExtension.cs
- OrderablePartitioner.cs
- Parsers.cs
- DiagnosticStrings.cs
- PrintPreviewDialog.cs
- HttpConfigurationSystem.cs
- SerializerDescriptor.cs
- ConditionCollection.cs
- PropertyEntry.cs
- AuthStoreRoleProvider.cs
- Timer.cs
- Control.cs
- SourceSwitch.cs
- DBParameter.cs
- FaultCode.cs
- FunctionNode.cs
- IntPtr.cs
- TreeNodeCollectionEditor.cs
- XmlAttributeAttribute.cs
- PipeSecurity.cs
- CreateUserErrorEventArgs.cs
- Command.cs
- DisplayNameAttribute.cs
- MessageHeaderT.cs
- TrimSurroundingWhitespaceAttribute.cs
- OrderedDictionary.cs
- SiteOfOriginPart.cs
- MissingFieldException.cs
- TransformGroup.cs
- SimpleApplicationHost.cs
- WriteTimeStream.cs
- SchemaDeclBase.cs
- PeerToPeerException.cs
- KeyGestureConverter.cs
- AssemblySettingAttributes.cs
- DataServiceProviderWrapper.cs
- Slider.cs
- EasingKeyFrames.cs
- SQLInt32.cs
- ComponentDispatcherThread.cs
- adornercollection.cs
- XmlSchemaNotation.cs
- ValueProviderWrapper.cs
- PropertyChangingEventArgs.cs
- contentDescriptor.cs
- SafeHandles.cs
- SmiXetterAccessMap.cs
- UDPClient.cs
- ContractListAdapter.cs
- HashStream.cs
- WebConfigurationHost.cs
- CommandArguments.cs
- StylusPoint.cs
- HyperlinkAutomationPeer.cs
- BitmapCodecInfo.cs
- ConnectionStringSettings.cs
- DashStyle.cs
- PartialCachingAttribute.cs
- StorageConditionPropertyMapping.cs
- XPathParser.cs
- WindowsSlider.cs
- PartialList.cs
- ZipIOCentralDirectoryFileHeader.cs
- StreamUpdate.cs
- RepeatBehavior.cs
- DataControlReference.cs
- MappingMetadataHelper.cs
- XmlSchemaDocumentation.cs
- FontStretches.cs
- FixedSOMLineRanges.cs
- Freezable.cs
- LocalizableAttribute.cs
- SqlOuterApplyReducer.cs
- PersistChildrenAttribute.cs
- GradientBrush.cs
- ProfileServiceManager.cs
- OleDbCommandBuilder.cs
- WorkItem.cs
- CollectionViewGroupInternal.cs
- BinHexDecoder.cs
- TextTreeRootTextBlock.cs
- EntityDataSourceEntitySetNameItem.cs
- NavigationFailedEventArgs.cs
- BezierSegment.cs
- OleDbPropertySetGuid.cs
- COM2ExtendedUITypeEditor.cs