Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- CodeCastExpression.cs
- SmiContext.cs
- UIPermission.cs
- HtmlInputSubmit.cs
- Int32Animation.cs
- TextTreeTextElementNode.cs
- ZipIOFileItemStream.cs
- TypeDescriptor.cs
- Table.cs
- MediaContextNotificationWindow.cs
- ConfigurationErrorsException.cs
- XPathSingletonIterator.cs
- DataGridViewRowPrePaintEventArgs.cs
- streamingZipPartStream.cs
- TypeCollectionPropertyEditor.cs
- SqlDataSourceSelectingEventArgs.cs
- Int16.cs
- ListViewContainer.cs
- ToolboxComponentsCreatedEventArgs.cs
- SystemInformation.cs
- ListBoxItem.cs
- XmlParserContext.cs
- MimePart.cs
- XmlMembersMapping.cs
- ConstraintStruct.cs
- _DigestClient.cs
- ScaleTransform.cs
- WebProxyScriptElement.cs
- StaticTextPointer.cs
- SamlAssertionKeyIdentifierClause.cs
- DataSourceCache.cs
- SystemWebSectionGroup.cs
- IndependentlyAnimatedPropertyMetadata.cs
- DataServiceRequest.cs
- Rotation3D.cs
- Timer.cs
- DirectoryNotFoundException.cs
- LayoutInformation.cs
- NullableDecimalAverageAggregationOperator.cs
- RoleGroupCollection.cs
- ProcessStartInfo.cs
- XmlSchema.cs
- Documentation.cs
- oledbconnectionstring.cs
- SmiContextFactory.cs
- NativeMethods.cs
- MediaElement.cs
- FixedNode.cs
- CodeIdentifier.cs
- MsmqProcessProtocolHandler.cs
- DataGridViewComboBoxCell.cs
- RightNameExpirationInfoPair.cs
- ObjectHelper.cs
- Polyline.cs
- WorkflowApplication.cs
- FieldDescriptor.cs
- Clock.cs
- SqlTriggerContext.cs
- DataGridState.cs
- PageBuildProvider.cs
- TargetControlTypeCache.cs
- DataContractAttribute.cs
- ControlValuePropertyAttribute.cs
- CompModSwitches.cs
- GroupStyle.cs
- SizeFConverter.cs
- EventDescriptorCollection.cs
- Viewport3DAutomationPeer.cs
- XPathDocument.cs
- PkcsUtils.cs
- EDesignUtil.cs
- ObfuscationAttribute.cs
- DatagridviewDisplayedBandsData.cs
- ValueTypeFixupInfo.cs
- Decimal.cs
- ImageCodecInfo.cs
- AutomationPatternInfo.cs
- PasswordRecovery.cs
- AndAlso.cs
- ProcessInputEventArgs.cs
- ThreadPool.cs
- HttpWebResponse.cs
- MatcherBuilder.cs
- ProfileService.cs
- PlanCompilerUtil.cs
- DataGridViewDataErrorEventArgs.cs
- CompositeControl.cs
- SqlGenericUtil.cs
- BindingMAnagerBase.cs
- ServiceModelStringsVersion1.cs
- VirtualPathProvider.cs
- ArrayElementGridEntry.cs
- PkcsMisc.cs
- FontSourceCollection.cs
- SQLBinaryStorage.cs
- CompoundFileStorageReference.cs
- util.cs
- ToolStripDropDown.cs
- OpenTypeLayoutCache.cs
- RuntimeIdentifierPropertyAttribute.cs