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
- PartitionedDataSource.cs
- FormsAuthenticationUserCollection.cs
- FixedStringLookup.cs
- RenderData.cs
- HashSetDebugView.cs
- SchemaMapping.cs
- NameValuePair.cs
- DateTimeParse.cs
- EncodingInfo.cs
- TcpHostedTransportConfiguration.cs
- XmlSchemaSimpleTypeRestriction.cs
- ResourceReferenceKeyNotFoundException.cs
- WebPermission.cs
- Message.cs
- ClosableStream.cs
- HtmlInputText.cs
- DescendantBaseQuery.cs
- IndexedGlyphRun.cs
- RawUIStateInputReport.cs
- LambdaCompiler.Lambda.cs
- errorpatternmatcher.cs
- StructuralObject.cs
- HtmlTableCell.cs
- Tracking.cs
- SecurityTimestamp.cs
- DependencyObject.cs
- SQLRoleProvider.cs
- QilTypeChecker.cs
- MonitoringDescriptionAttribute.cs
- XmlSchema.cs
- ValidatingCollection.cs
- InvalidCastException.cs
- PrePostDescendentsWalker.cs
- HtmlContainerControl.cs
- AtomContentProperty.cs
- Grid.cs
- NotifyInputEventArgs.cs
- CodeSubDirectoriesCollection.cs
- XmlSchemaIdentityConstraint.cs
- MetabaseReader.cs
- EnumValAlphaComparer.cs
- PolyLineSegment.cs
- TableLayout.cs
- GeneratedContractType.cs
- Atom10ItemFormatter.cs
- IsolatedStorageException.cs
- SqlProcedureAttribute.cs
- XsltLibrary.cs
- PrintDocument.cs
- Relationship.cs
- SqlTypeConverter.cs
- IntSecurity.cs
- BufferedReadStream.cs
- Char.cs
- TcpWorkerProcess.cs
- AlphabetConverter.cs
- ResourceLoader.cs
- ModifierKeysValueSerializer.cs
- MasterPage.cs
- TimeoutHelper.cs
- NegatedCellConstant.cs
- OrderByQueryOptionExpression.cs
- SHA512CryptoServiceProvider.cs
- Error.cs
- SaveLedgerEntryRequest.cs
- Thickness.cs
- WebBrowserBase.cs
- SmtpNetworkElement.cs
- IgnoreFlushAndCloseStream.cs
- IgnoreDataMemberAttribute.cs
- Listbox.cs
- TimeSpanHelper.cs
- IDictionary.cs
- FileDialogCustomPlacesCollection.cs
- SafeRightsManagementPubHandle.cs
- DataGridViewRowHeaderCell.cs
- TextRunCache.cs
- CategoryGridEntry.cs
- TypeSystemHelpers.cs
- AbstractExpressions.cs
- ByValueEqualityComparer.cs
- GenericPrincipal.cs
- TextRangeAdaptor.cs
- SystemIcmpV6Statistics.cs
- ResolveCriteriaCD1.cs
- DataRecord.cs
- PersonalizableTypeEntry.cs
- CheckBoxBaseAdapter.cs
- PeerCollaboration.cs
- InputReportEventArgs.cs
- TcpProcessProtocolHandler.cs
- InvalidCardException.cs
- PauseStoryboard.cs
- SafeBitVector32.cs
- NetStream.cs
- _ShellExpression.cs
- MetafileHeaderWmf.cs
- WebPartMenu.cs
- WpfXamlType.cs
- TableLayoutColumnStyleCollection.cs