Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Server / System / Data / Services / ETagAttribute.cs / 1305376 / ETagAttribute.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// CLR attribute to be annotated on types which indicate the list of properties // form the ETag. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services { using System; using System.Collections.Generic; using System.Collections.ObjectModel; ///Attribute to be annotated on types with ETags. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1019:DefineAccessorsForAttributeArguments", Justification = "Processed value is available")] [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)] public sealed class ETagAttribute : System.Attribute { ///Name of the properties that form the ETag. private readonly ReadOnlyCollectionpropertyNames; // This constructor was added since string[] is not a CLS-compliant type and // compiler gives a warning as error saying this attribute doesn't have any // constructor that takes CLS-compliant type /// /// Initializes a new instance of ETag attribute with the property name /// that forms the ETag. /// /// Name of the property that form the ETag for the current type. public ETagAttribute(string propertyName) { WebUtil.CheckArgumentNull(propertyName, "propertyName"); this.propertyNames = new ReadOnlyCollection(new List (new string[1] { propertyName })); } /// /// Initializes a new instance of ETag attribute with the list of property names /// that form the ETag. /// /// Name of the properties that form the ETag for the current type. public ETagAttribute(params string[] propertyNames) { WebUtil.CheckArgumentNull(propertyNames, "propertyNames"); if (propertyNames.Length == 0) { throw new ArgumentException(Strings.ETagAttribute_MustSpecifyAtleastOnePropertyName, "propertyNames"); } this.propertyNames = new ReadOnlyCollection(new List (propertyNames)); } /// Name of the properties that form the ETag for the current type. public ReadOnlyCollectionPropertyNames { get { return this.propertyNames; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // //// CLR attribute to be annotated on types which indicate the list of properties // form the ETag. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services { using System; using System.Collections.Generic; using System.Collections.ObjectModel; ///Attribute to be annotated on types with ETags. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1019:DefineAccessorsForAttributeArguments", Justification = "Processed value is available")] [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)] public sealed class ETagAttribute : System.Attribute { ///Name of the properties that form the ETag. private readonly ReadOnlyCollectionpropertyNames; // This constructor was added since string[] is not a CLS-compliant type and // compiler gives a warning as error saying this attribute doesn't have any // constructor that takes CLS-compliant type /// /// Initializes a new instance of ETag attribute with the property name /// that forms the ETag. /// /// Name of the property that form the ETag for the current type. public ETagAttribute(string propertyName) { WebUtil.CheckArgumentNull(propertyName, "propertyName"); this.propertyNames = new ReadOnlyCollection(new List (new string[1] { propertyName })); } /// /// Initializes a new instance of ETag attribute with the list of property names /// that form the ETag. /// /// Name of the properties that form the ETag for the current type. public ETagAttribute(params string[] propertyNames) { WebUtil.CheckArgumentNull(propertyNames, "propertyNames"); if (propertyNames.Length == 0) { throw new ArgumentException(Strings.ETagAttribute_MustSpecifyAtleastOnePropertyName, "propertyNames"); } this.propertyNames = new ReadOnlyCollection(new List (propertyNames)); } /// Name of the properties that form the ETag for the current type. public ReadOnlyCollectionPropertyNames { get { return this.propertyNames; } } } } // 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
- KeyFrames.cs
- PriorityItem.cs
- ExtentJoinTreeNode.cs
- ComPersistableTypeElement.cs
- DesignerAttributeInfo.cs
- SafeMILHandle.cs
- SqlClientWrapperSmiStreamChars.cs
- EventDescriptor.cs
- StreamReader.cs
- WebRequestModuleElement.cs
- ElementProxy.cs
- GroupedContextMenuStrip.cs
- AdapterDictionary.cs
- AnimationException.cs
- TableLayoutCellPaintEventArgs.cs
- ImportCatalogPart.cs
- Point4D.cs
- OutOfProcStateClientManager.cs
- CodePageUtils.cs
- BrowserCapabilitiesFactoryBase.cs
- MessageQueueConverter.cs
- CellLabel.cs
- BaseAsyncResult.cs
- PersonalizableAttribute.cs
- EventLog.cs
- DataGridViewMethods.cs
- handlecollector.cs
- RangeBase.cs
- PlanCompiler.cs
- XmlSchemaType.cs
- HtmlTable.cs
- xml.cs
- StringFormat.cs
- ApplicationHost.cs
- ButtonBase.cs
- XmlSchemaObjectTable.cs
- DelegatingConfigHost.cs
- TaiwanLunisolarCalendar.cs
- Pointer.cs
- CalculatedColumn.cs
- SQLInt64Storage.cs
- IdnElement.cs
- ResourceIDHelper.cs
- PageRouteHandler.cs
- ConfigurationValues.cs
- Random.cs
- HtmlMeta.cs
- HashAlgorithm.cs
- HeaderedContentControl.cs
- PersistStreamTypeWrapper.cs
- SpecialFolderEnumConverter.cs
- HyperLinkColumn.cs
- LineServices.cs
- WebBrowserUriTypeConverter.cs
- CodeGroup.cs
- KeyTime.cs
- PersonalizationState.cs
- DefaultBinder.cs
- RawStylusActions.cs
- EnumType.cs
- CheckBoxFlatAdapter.cs
- ContentElementAutomationPeer.cs
- StateItem.cs
- ClientSettings.cs
- DbXmlEnabledProviderManifest.cs
- AutoResizedEvent.cs
- MetadataLocation.cs
- Thumb.cs
- CommandLibraryHelper.cs
- PagerSettings.cs
- SafeHGlobalHandleCritical.cs
- DelegatedStream.cs
- ViewSimplifier.cs
- XmlHierarchyData.cs
- KeyMatchBuilder.cs
- WebSysDefaultValueAttribute.cs
- StringConverter.cs
- StatusBar.cs
- Rules.cs
- Propagator.ExtentPlaceholderCreator.cs
- BoolExpression.cs
- KoreanLunisolarCalendar.cs
- FlowPosition.cs
- CompositeControl.cs
- SourceElementsCollection.cs
- SqlDataSourceFilteringEventArgs.cs
- Tablet.cs
- SharedPersonalizationStateInfo.cs
- Utilities.cs
- SapiRecognizer.cs
- DayRenderEvent.cs
- ParserStreamGeometryContext.cs
- XmlDataFileEditor.cs
- ResourcesBuildProvider.cs
- ErrorStyle.cs
- RootBrowserWindowProxy.cs
- ToolStripItemRenderEventArgs.cs
- DrawingContext.cs
- SoapInteropTypes.cs
- ToolBarButtonDesigner.cs