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
- Vector3DAnimationUsingKeyFrames.cs
- SkewTransform.cs
- PersonalizationStateInfo.cs
- XhtmlBasicCommandAdapter.cs
- ClientSettingsSection.cs
- EntityDataSourceEntityTypeFilterItem.cs
- InvokeSchedule.cs
- SystemSounds.cs
- TextLine.cs
- AssociationType.cs
- BamlCollectionHolder.cs
- ScriptingJsonSerializationSection.cs
- StylusButtonCollection.cs
- EventSetter.cs
- MetadataItem.cs
- GlobalProxySelection.cs
- ConfigurationUtility.cs
- BamlWriter.cs
- PrivilegeNotHeldException.cs
- PrintDialog.cs
- WCFBuildProvider.cs
- UnhandledExceptionEventArgs.cs
- GeneralTransform3D.cs
- FragmentQuery.cs
- TextChangedEventArgs.cs
- OpenFileDialog.cs
- SoapExtensionTypeElement.cs
- ConstantCheck.cs
- DefaultSerializationProviderAttribute.cs
- UIntPtr.cs
- RectIndependentAnimationStorage.cs
- ObjectSecurity.cs
- ISCIIEncoding.cs
- ThreadAttributes.cs
- AxisAngleRotation3D.cs
- DataGridViewRowPostPaintEventArgs.cs
- PassportPrincipal.cs
- HandledEventArgs.cs
- DeobfuscatingStream.cs
- CommandValueSerializer.cs
- DataGrid.cs
- WebControlAdapter.cs
- IFormattable.cs
- StringSorter.cs
- Span.cs
- ProfileService.cs
- BitmapImage.cs
- InstancePersistenceEvent.cs
- StorageModelBuildProvider.cs
- ConditionValidator.cs
- SelectorItemAutomationPeer.cs
- SelfIssuedAuthProofToken.cs
- MachineKeySection.cs
- DefaultProxySection.cs
- AdCreatedEventArgs.cs
- odbcmetadatacollectionnames.cs
- ToolboxDataAttribute.cs
- Compilation.cs
- HostingEnvironment.cs
- ResourceReferenceExpressionConverter.cs
- OutputCacheProfileCollection.cs
- COM2ComponentEditor.cs
- PackageProperties.cs
- PolyLineSegmentFigureLogic.cs
- PolicyValidationException.cs
- EventListenerClientSide.cs
- SpeechAudioFormatInfo.cs
- Listbox.cs
- SystemIcmpV6Statistics.cs
- VerticalAlignConverter.cs
- MaskInputRejectedEventArgs.cs
- Range.cs
- ZoneMembershipCondition.cs
- SplineQuaternionKeyFrame.cs
- GlobalizationAssembly.cs
- DbUpdateCommandTree.cs
- DataShape.cs
- Exceptions.cs
- BigInt.cs
- BitmapEffectDrawing.cs
- COM2Properties.cs
- ValueProviderWrapper.cs
- VerticalAlignConverter.cs
- Comparer.cs
- NameObjectCollectionBase.cs
- TaskHelper.cs
- COM2PropertyDescriptor.cs
- RawStylusActions.cs
- UrlAuthFailedErrorFormatter.cs
- DesignerCategoryAttribute.cs
- RectKeyFrameCollection.cs
- ServiceEndpointAssociationProvider.cs
- EntitySetDataBindingList.cs
- RuleSettings.cs
- File.cs
- SqlDependencyListener.cs
- ListViewGroup.cs
- WeakReferenceKey.cs
- OperationAbortedException.cs
- remotingproxy.cs