Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataWebControls / System / Data / WebControls / ResourceDescriptionAttribute.cs / 2 / ResourceDescriptionAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //----------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Reflection; namespace System.Web.UI.WebControls { [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Event, Inherited = true, AllowMultiple = false)] internal sealed class ResourceDescriptionAttribute : DescriptionAttribute { private bool _resourceLoaded; private readonly string _descriptionResourceName; public ResourceDescriptionAttribute(string descriptionResourceName) { _descriptionResourceName = descriptionResourceName; } public override string Description { get { if (!_resourceLoaded) { _resourceLoaded = true; DescriptionValue = System.Web.UI.WebControlsRes.GetString(_descriptionResourceName); } return base.Description; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //----------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Reflection; namespace System.Web.UI.WebControls { [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Event, Inherited = true, AllowMultiple = false)] internal sealed class ResourceDescriptionAttribute : DescriptionAttribute { private bool _resourceLoaded; private readonly string _descriptionResourceName; public ResourceDescriptionAttribute(string descriptionResourceName) { _descriptionResourceName = descriptionResourceName; } public override string Description { get { if (!_resourceLoaded) { _resourceLoaded = true; DescriptionValue = System.Web.UI.WebControlsRes.GetString(_descriptionResourceName); } return base.Description; } } } } // 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
- SortedList.cs
- PropertyGridCommands.cs
- BamlMapTable.cs
- XPathQilFactory.cs
- CompositeFontFamily.cs
- HostVisual.cs
- SecurityException.cs
- TCEAdapterGenerator.cs
- QilIterator.cs
- SrgsNameValueTag.cs
- Border.cs
- UTF7Encoding.cs
- TextRangeBase.cs
- DynamicObject.cs
- TreeNode.cs
- MultiSelector.cs
- TcpAppDomainProtocolHandler.cs
- IgnoreDataMemberAttribute.cs
- EntityDataSourceView.cs
- AsnEncodedData.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- TextElement.cs
- LinqDataSourceView.cs
- MimeBasePart.cs
- BooleanAnimationUsingKeyFrames.cs
- ListSortDescriptionCollection.cs
- _BasicClient.cs
- MenuItemCollection.cs
- Journaling.cs
- CriticalHandle.cs
- ConfigurationUtility.cs
- DbConnectionPoolOptions.cs
- TextServicesCompartment.cs
- PropertyTab.cs
- DetailsViewActionList.cs
- MsmqIntegrationSecurityMode.cs
- RequiredFieldValidator.cs
- PackageRelationshipSelector.cs
- MessageQueueConverter.cs
- BitmapEffectInput.cs
- ProviderConnectionPointCollection.cs
- DiagnosticsConfiguration.cs
- RegexCompiler.cs
- ValueTypeFixupInfo.cs
- DisplayMemberTemplateSelector.cs
- Pair.cs
- WsatConfiguration.cs
- RelativeSource.cs
- HeaderedContentControl.cs
- MediaElement.cs
- TimersDescriptionAttribute.cs
- ArrayList.cs
- SQLInt16Storage.cs
- UInt16Converter.cs
- RequiredAttributeAttribute.cs
- SqlCacheDependencyDatabaseCollection.cs
- TextParagraphView.cs
- DataGridViewColumnDesigner.cs
- activationcontext.cs
- Baml6Assembly.cs
- XPathSingletonIterator.cs
- DbExpressionRules.cs
- UnsafeNativeMethods.cs
- UnmanagedHandle.cs
- DesignerObjectListAdapter.cs
- NetSectionGroup.cs
- OracleConnectionFactory.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- PingOptions.cs
- COM2EnumConverter.cs
- Label.cs
- UidManager.cs
- System.Data.OracleClient_BID.cs
- DateTimeUtil.cs
- XmlDataSourceNodeDescriptor.cs
- AssemblyCacheEntry.cs
- PrinterUnitConvert.cs
- AndCondition.cs
- CompareValidator.cs
- FormViewPageEventArgs.cs
- PopupRootAutomationPeer.cs
- VirtualizedContainerService.cs
- XmlDataSourceDesigner.cs
- EdmEntityTypeAttribute.cs
- HotSpot.cs
- ThousandthOfEmRealPoints.cs
- WebPartVerbsEventArgs.cs
- DBDataPermission.cs
- TextBoxView.cs
- XmlSigningNodeWriter.cs
- SocketElement.cs
- ScriptModule.cs
- HtmlPhoneCallAdapter.cs
- ChangeInterceptorAttribute.cs
- AttributeData.cs
- Line.cs
- MetaChildrenColumn.cs
- Stacktrace.cs
- TypeConverter.cs
- PropertyFilterAttribute.cs