Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / WebCategoryAttribute.cs / 1 / WebCategoryAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web { using System; using System.ComponentModel; using System.Web.Util; ////// /// [AttributeUsage(AttributeTargets.All)] internal sealed class WebCategoryAttribute : CategoryAttribute { ////// CategoryAttribute that can access ASP.NET localized strings. /// ////// internal WebCategoryAttribute(string category) : base(category) { } public override object TypeId { get { return typeof(CategoryAttribute); } } ////// Initializes a new instance of the ///class. /// /// This method is called the first time the category property /// is accessed. It provides a way to lookup a localized string for /// the given category. Classes may override this to add their /// own localized names to categories. If a localized string is /// available for the given value, the method should return it. /// Otherwise, it should return null. /// protected override string GetLocalizedString(string value) { string localizedValue = base.GetLocalizedString(value); if (localizedValue == null) { localizedValue = (string)SR.GetString("Category_" + value); } // This attribute is internal, and we should never have a missing resource string. // Debug.Assert(localizedValue != null, "All WebForms category attributes should have localized strings. Category '" + value + "' not found."); return localizedValue; } } } // 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
- BatchParser.cs
- NotifyInputEventArgs.cs
- ManualWorkflowSchedulerService.cs
- RichTextBox.cs
- ContentTextAutomationPeer.cs
- GAC.cs
- DesignerDataColumn.cs
- QuadraticBezierSegment.cs
- HitTestWithPointDrawingContextWalker.cs
- QueryResponse.cs
- EmissiveMaterial.cs
- SecurityStateEncoder.cs
- XpsFilter.cs
- UserPersonalizationStateInfo.cs
- ReliableChannelListener.cs
- ExportOptions.cs
- FrameworkElement.cs
- LabelEditEvent.cs
- PageCodeDomTreeGenerator.cs
- Vector3DValueSerializer.cs
- Int16Storage.cs
- DefaultObjectMappingItemCollection.cs
- InputLanguageCollection.cs
- ReflectPropertyDescriptor.cs
- TypeDefinition.cs
- GregorianCalendar.cs
- DSASignatureDeformatter.cs
- FocusWithinProperty.cs
- _PooledStream.cs
- HideDisabledControlAdapter.cs
- M3DUtil.cs
- AnonymousIdentificationSection.cs
- IPAddress.cs
- QilInvokeEarlyBound.cs
- SoapClientMessage.cs
- StartFileNameEditor.cs
- CodeComment.cs
- SqlCacheDependency.cs
- GenericAuthenticationEventArgs.cs
- VerticalAlignConverter.cs
- ColorTransform.cs
- MenuBindingsEditor.cs
- AnnotationMap.cs
- OleServicesContext.cs
- SplitterDesigner.cs
- Column.cs
- ListViewItemEventArgs.cs
- CustomActivityDesigner.cs
- CachedRequestParams.cs
- ApplicationSecurityInfo.cs
- ZipIOModeEnforcingStream.cs
- HeaderedContentControl.cs
- FontStyleConverter.cs
- ThreadStaticAttribute.cs
- DocumentOrderQuery.cs
- CacheMode.cs
- MultipleViewPattern.cs
- MetadataCacheItem.cs
- DesignerSerializationOptionsAttribute.cs
- objectresult_tresulttype.cs
- DataGridPageChangedEventArgs.cs
- EntityStoreSchemaFilterEntry.cs
- StandardMenuStripVerb.cs
- HelpKeywordAttribute.cs
- EventQueueState.cs
- DbConnectionStringBuilder.cs
- Double.cs
- ObservableDictionary.cs
- AssociationSetEnd.cs
- ReadContentAsBinaryHelper.cs
- PersonalizableTypeEntry.cs
- Animatable.cs
- InputProviderSite.cs
- RegexCode.cs
- ToolZone.cs
- BindingSource.cs
- XamlTreeBuilderBamlRecordWriter.cs
- HandleRef.cs
- HwndMouseInputProvider.cs
- DesignerLoader.cs
- Encoding.cs
- TableRow.cs
- peernodestatemanager.cs
- DesignerUtils.cs
- XmlSchemaCollection.cs
- XmlSerializationWriter.cs
- ServerProtocol.cs
- RadioButtonRenderer.cs
- PropertyGrid.cs
- ApplicationTrust.cs
- Parser.cs
- DiscoveryClientReferences.cs
- IDQuery.cs
- SafeRegistryHandle.cs
- ScrollableControl.cs
- Int16AnimationBase.cs
- PathParser.cs
- FullTextBreakpoint.cs
- XamlReader.cs
- MailDefinition.cs