Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWebControlsDesign / System / Data / WebControls / Design / Util / ResourceDescriptionAttribute.cs / 1305376 / ResourceDescriptionAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //----------------------------------------------------------------------------- using System; using System.ComponentModel; using System.Reflection; namespace System.Web.UI.Design.WebControls.Util { [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.Design.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
- OleDbParameterCollection.cs
- XPathScanner.cs
- LoadRetryAsyncResult.cs
- PathSegmentCollection.cs
- ParseHttpDate.cs
- TaskbarItemInfo.cs
- WebPartDescriptionCollection.cs
- DataGridViewButtonCell.cs
- MetabaseServerConfig.cs
- DesignerEventService.cs
- Delegate.cs
- TableLayout.cs
- Tablet.cs
- OptionalColumn.cs
- BridgeDataRecord.cs
- RedirectionProxy.cs
- DataRowCollection.cs
- DesignerRegion.cs
- XmlDeclaration.cs
- LayoutSettings.cs
- AuditLog.cs
- TcpChannelFactory.cs
- CollectionChangeEventArgs.cs
- SqlClientFactory.cs
- EmbeddedMailObject.cs
- printdlgexmarshaler.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- UdpDiscoveryEndpointProvider.cs
- WorkflowDesignerMessageFilter.cs
- DataGridViewIntLinkedList.cs
- DataSetMappper.cs
- StylusTip.cs
- DetailsViewUpdateEventArgs.cs
- SetIterators.cs
- MetadataFile.cs
- TypeRestriction.cs
- SmtpTransport.cs
- FontStretches.cs
- WindowsSpinner.cs
- Process.cs
- MultiDataTrigger.cs
- CodeMemberField.cs
- NetworkInterface.cs
- BaseCollection.cs
- DataGridItem.cs
- ListChangedEventArgs.cs
- SqlCrossApplyToCrossJoin.cs
- Wrapper.cs
- DataGridState.cs
- MouseEventArgs.cs
- DataControlImageButton.cs
- TemplatePropertyEntry.cs
- PolyLineSegment.cs
- SurrogateSelector.cs
- ConfigXmlAttribute.cs
- ObjRef.cs
- EtwTrackingBehaviorElement.cs
- SiteMembershipCondition.cs
- WebPartUtil.cs
- VisualStyleRenderer.cs
- TimeSpanStorage.cs
- MessageDecoder.cs
- DESCryptoServiceProvider.cs
- FrugalList.cs
- Command.cs
- Ports.cs
- CompositeKey.cs
- ContentOperations.cs
- InvokeDelegate.cs
- LogSwitch.cs
- StylusPointPropertyUnit.cs
- _IPv6Address.cs
- XmlElement.cs
- NamespaceMapping.cs
- securitycriticaldata.cs
- DelegateSerializationHolder.cs
- _SslSessionsCache.cs
- TypeConverterHelper.cs
- Regex.cs
- ResourceReferenceExpressionConverter.cs
- RSAPKCS1SignatureDeformatter.cs
- AppPool.cs
- Pair.cs
- EventDescriptorCollection.cs
- WindowsStartMenu.cs
- DesignerSerializerAttribute.cs
- HtmlAnchor.cs
- CompatibleComparer.cs
- QuestionEventArgs.cs
- ToolStripDropDownClosingEventArgs.cs
- XMLUtil.cs
- RectValueSerializer.cs
- InheritanceContextHelper.cs
- Odbc32.cs
- RelationshipSet.cs
- Form.cs
- WindowsProgressbar.cs
- ProtocolState.cs
- ThemeDirectoryCompiler.cs
- VolatileEnlistmentMultiplexing.cs