Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OpenTypeCommon.cs
- NullableLongSumAggregationOperator.cs
- WindowsFormsHostPropertyMap.cs
- HyperLinkColumn.cs
- InfoCardSchemas.cs
- WinCategoryAttribute.cs
- MarkupCompiler.cs
- TableAdapterManagerGenerator.cs
- TreeNodeStyle.cs
- Image.cs
- SqlStatistics.cs
- Pointer.cs
- documentsequencetextpointer.cs
- DeriveBytes.cs
- UpnEndpointIdentity.cs
- DbTransaction.cs
- PerformanceCounterLib.cs
- InkSerializer.cs
- CustomAssemblyResolver.cs
- XmlCodeExporter.cs
- ToolStripDropDownClosingEventArgs.cs
- KeyedHashAlgorithm.cs
- _UriTypeConverter.cs
- ExtentKey.cs
- TableItemStyle.cs
- ToolboxItemAttribute.cs
- DataRelationCollection.cs
- String.cs
- TimersDescriptionAttribute.cs
- EmptyStringExpandableObjectConverter.cs
- XsltOutput.cs
- InkCanvasAutomationPeer.cs
- FormsAuthenticationTicket.cs
- ResourceDictionaryCollection.cs
- DataServiceConfiguration.cs
- IEnumerable.cs
- ConstraintManager.cs
- IncrementalCompileAnalyzer.cs
- ExpressionBuilder.cs
- CreateUserWizardAutoFormat.cs
- DbMetaDataCollectionNames.cs
- XmlTextReader.cs
- IsolatedStorageFileStream.cs
- DBParameter.cs
- TrustManager.cs
- WebControlAdapter.cs
- RepeatButton.cs
- CompoundFileIOPermission.cs
- XmlTextEncoder.cs
- EntityKeyElement.cs
- EraserBehavior.cs
- BitmapEffectInputConnector.cs
- ResourcePermissionBaseEntry.cs
- Config.cs
- linebase.cs
- SafeNativeMemoryHandle.cs
- ClientSettingsSection.cs
- ListBase.cs
- SynchronousSendBindingElement.cs
- COM2TypeInfoProcessor.cs
- XmlReader.cs
- XmlDocumentType.cs
- fixedPageContentExtractor.cs
- Ticks.cs
- SqlProviderServices.cs
- _SSPIWrapper.cs
- StringFunctions.cs
- MenuItemStyleCollection.cs
- HitTestParameters.cs
- BufferBuilder.cs
- CustomErrorsSection.cs
- DataBindingHandlerAttribute.cs
- ConfigurationSectionHelper.cs
- HMACSHA384.cs
- AsyncOperationManager.cs
- ThemeDirectoryCompiler.cs
- SimpleHandlerBuildProvider.cs
- WorkflowHostingEndpoint.cs
- ToolboxItemFilterAttribute.cs
- DesignBindingPicker.cs
- Int32AnimationBase.cs
- Condition.cs
- ColorMap.cs
- Divide.cs
- RecordManager.cs
- PhysicalOps.cs
- UpdateCommandGenerator.cs
- WhitespaceRule.cs
- MembershipPasswordException.cs
- ReverseInheritProperty.cs
- SqlCommandBuilder.cs
- Vector3DKeyFrameCollection.cs
- FontConverter.cs
- AttachedAnnotation.cs
- TextSelectionHelper.cs
- DbDataSourceEnumerator.cs
- FrameworkTemplate.cs
- PasswordTextNavigator.cs
- IdleTimeoutMonitor.cs
- DiscoveryClientBindingElement.cs