Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / HtmlControls / HtmlMeta.cs / 1305376 / HtmlMeta.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.HtmlControls { using System; using System.Security; using System.Security.Permissions; using System.ComponentModel; [ ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder)) ] public class HtmlMeta : HtmlControl { public HtmlMeta() : base("meta") { } [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public virtual string Content { get { string s = Attributes["content"]; return ((s != null) ? s : String.Empty); } set { Attributes["content"] = MapStringAttributeToString(value); } } [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public virtual string HttpEquiv { get { string s = Attributes["http-equiv"]; return ((s != null) ? s : String.Empty); } set { Attributes["http-equiv"] = MapStringAttributeToString(value); } } [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public virtual string Name { get { string s = Attributes["name"]; return ((s != null) ? s : String.Empty); } set { Attributes["name"] = MapStringAttributeToString(value); } } [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public virtual string Scheme { get { string s = Attributes["scheme"]; return ((s != null) ? s : String.Empty); } set { Attributes["scheme"] = MapStringAttributeToString(value); } } protected internal override void Render(HtmlTextWriter writer) { if (EnableLegacyRendering) { base.Render(writer); } else { // By default HTMLControl doesn't render a closing /> so its not XHTML compliance writer.WriteBeginTag(TagName); RenderAttributes(writer); writer.Write(HtmlTextWriter.SelfClosingTagEnd); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.HtmlControls { using System; using System.Security; using System.Security.Permissions; using System.ComponentModel; [ ControlBuilderAttribute(typeof(HtmlEmptyTagControlBuilder)) ] public class HtmlMeta : HtmlControl { public HtmlMeta() : base("meta") { } [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public virtual string Content { get { string s = Attributes["content"]; return ((s != null) ? s : String.Empty); } set { Attributes["content"] = MapStringAttributeToString(value); } } [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public virtual string HttpEquiv { get { string s = Attributes["http-equiv"]; return ((s != null) ? s : String.Empty); } set { Attributes["http-equiv"] = MapStringAttributeToString(value); } } [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public virtual string Name { get { string s = Attributes["name"]; return ((s != null) ? s : String.Empty); } set { Attributes["name"] = MapStringAttributeToString(value); } } [ WebCategory("Appearance"), DefaultValue(""), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public virtual string Scheme { get { string s = Attributes["scheme"]; return ((s != null) ? s : String.Empty); } set { Attributes["scheme"] = MapStringAttributeToString(value); } } protected internal override void Render(HtmlTextWriter writer) { if (EnableLegacyRendering) { base.Render(writer); } else { // By default HTMLControl doesn't render a closing /> so its not XHTML compliance writer.WriteBeginTag(TagName); RenderAttributes(writer); writer.Write(HtmlTextWriter.SelfClosingTagEnd); } } } } // 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
- Bitmap.cs
- IteratorDescriptor.cs
- IPGlobalProperties.cs
- DataGridViewUtilities.cs
- IntSumAggregationOperator.cs
- XmlUtil.cs
- SharedUtils.cs
- CharEnumerator.cs
- ProviderSettingsCollection.cs
- ResourcePart.cs
- SessionPageStatePersister.cs
- ManifestSignedXml.cs
- ArcSegment.cs
- Function.cs
- HostedNamedPipeTransportManager.cs
- ConvertTextFrag.cs
- ConnectionManagementSection.cs
- SoapMessage.cs
- EventLogPermissionHolder.cs
- Rect3DConverter.cs
- WebEventCodes.cs
- OrCondition.cs
- PathSegment.cs
- CodeTypeReferenceCollection.cs
- StateRuntime.cs
- TextDpi.cs
- GrammarBuilderWildcard.cs
- DashStyles.cs
- EtwProvider.cs
- TemplateBamlTreeBuilder.cs
- GPPOINT.cs
- EntityViewGenerationConstants.cs
- LinkedResource.cs
- ServiceOperationHelpers.cs
- DecoratedNameAttribute.cs
- serverconfig.cs
- ScrollChrome.cs
- Ref.cs
- autovalidator.cs
- HtmlForm.cs
- MruCache.cs
- UriPrefixTable.cs
- DataListItem.cs
- _OverlappedAsyncResult.cs
- TemplatedWizardStep.cs
- BooleanFacetDescriptionElement.cs
- OneOfConst.cs
- Transform.cs
- FlatButtonAppearance.cs
- EntityDataSourceDataSelection.cs
- _CacheStreams.cs
- SystemInformation.cs
- PageTheme.cs
- FlatButtonAppearance.cs
- SqlClientWrapperSmiStreamChars.cs
- Timer.cs
- shaperfactoryquerycachekey.cs
- PersianCalendar.cs
- XmlnsCompatibleWithAttribute.cs
- DataGridViewAutoSizeModeEventArgs.cs
- RuntimeEnvironment.cs
- OleDbInfoMessageEvent.cs
- _NetRes.cs
- ByteStreamMessageEncoder.cs
- _KerberosClient.cs
- WebPartCancelEventArgs.cs
- HelpProvider.cs
- DbParameterCollectionHelper.cs
- SoapFault.cs
- AmbiguousMatchException.cs
- ToolZone.cs
- SequenceDesignerAccessibleObject.cs
- UInt64Storage.cs
- UnicodeEncoding.cs
- Quad.cs
- DataGridViewRowCollection.cs
- InternalCache.cs
- NonClientArea.cs
- SafeFileMapViewHandle.cs
- SignatureGenerator.cs
- ThreadInterruptedException.cs
- AutoScrollHelper.cs
- DateTimeParse.cs
- WeakReference.cs
- ReadOnlyObservableCollection.cs
- HttpApplicationFactory.cs
- LineGeometry.cs
- ThicknessAnimationUsingKeyFrames.cs
- DiscoveryDocumentSearchPattern.cs
- FrameworkPropertyMetadata.cs
- InheritedPropertyChangedEventArgs.cs
- DatePickerAutomationPeer.cs
- InlinedAggregationOperatorEnumerator.cs
- SetIndexBinder.cs
- DesignerAttribute.cs
- CommonDialog.cs
- WebReferenceOptions.cs
- ClientScriptItem.cs
- DiscreteKeyFrames.cs
- SQLByteStorage.cs