Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataWeb / Server / System / Data / Services / ETagAttribute.cs / 1 / 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
- METAHEADER.cs
- Facet.cs
- Decoder.cs
- DelegatingStream.cs
- DataGridToolTip.cs
- StreamWithDictionary.cs
- GeneralTransform3DGroup.cs
- Nodes.cs
- TextElementCollection.cs
- Mappings.cs
- StatusBarPanelClickEvent.cs
- SqlGatherProducedAliases.cs
- ImageAnimator.cs
- BitmapCodecInfoInternal.cs
- TypeExtensionConverter.cs
- XsltException.cs
- NavigationWindowAutomationPeer.cs
- TempFiles.cs
- COSERVERINFO.cs
- AssemblyCollection.cs
- DictionaryGlobals.cs
- MiniMapControl.xaml.cs
- OracleDataAdapter.cs
- HttpCacheVaryByContentEncodings.cs
- SmiSettersStream.cs
- SHA512.cs
- ApplicationSecurityManager.cs
- SchemaSetCompiler.cs
- ExpressionPrefixAttribute.cs
- TypefaceMetricsCache.cs
- ToolboxItemCollection.cs
- SettingsBindableAttribute.cs
- EditorBrowsableAttribute.cs
- StringUtil.cs
- ExtendedPropertyCollection.cs
- KeyboardEventArgs.cs
- OAVariantLib.cs
- ResXResourceSet.cs
- MetadataSource.cs
- LoginUtil.cs
- SafePEFileHandle.cs
- InputScope.cs
- CommandLibraryHelper.cs
- DependencyObject.cs
- SqlCacheDependency.cs
- ClientBuildManagerCallback.cs
- DiscreteKeyFrames.cs
- PixelFormats.cs
- DateTimeHelper.cs
- QueryOperationResponseOfT.cs
- SingleObjectCollection.cs
- SchemaInfo.cs
- SerialPinChanges.cs
- DataControlImageButton.cs
- CodeDOMUtility.cs
- AppModelKnownContentFactory.cs
- CacheForPrimitiveTypes.cs
- TableLayoutPanelCellPosition.cs
- MethodToken.cs
- SelectionPattern.cs
- DBDataPermissionAttribute.cs
- InertiaExpansionBehavior.cs
- ToolbarAUtomationPeer.cs
- RenderContext.cs
- DataGridColumnStyleMappingNameEditor.cs
- CellParagraph.cs
- FontUnit.cs
- ObjectHandle.cs
- StrokeNodeOperations2.cs
- DBConnection.cs
- ColumnReorderedEventArgs.cs
- SemaphoreFullException.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- MembershipUser.cs
- ReadWriteObjectLock.cs
- Rectangle.cs
- XamlSerializerUtil.cs
- ObjectIDGenerator.cs
- DispatcherFrame.cs
- EncryptedPackage.cs
- Message.cs
- FactoryMaker.cs
- __ComObject.cs
- MDIWindowDialog.cs
- DataGridViewSelectedCellCollection.cs
- CollectionBase.cs
- DataControlFieldCollection.cs
- processwaithandle.cs
- ParserStack.cs
- WmlValidationSummaryAdapter.cs
- FtpWebRequest.cs
- StandardOleMarshalObject.cs
- RelOps.cs
- XPathSingletonIterator.cs
- Automation.cs
- ResourceSetExpression.cs
- CompilerScopeManager.cs
- StylusDownEventArgs.cs
- AdRotatorDesigner.cs
- SemanticTag.cs