Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / ComplexBindingPropertiesAttribute.cs / 1 / ComplexBindingPropertiesAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.Class)] public sealed class ComplexBindingPropertiesAttribute : Attribute { private readonly string dataSource; private readonly string dataMember; ///Specifies the data source and data member properties for a component. ////// public ComplexBindingPropertiesAttribute() { this.dataSource = null; this.dataMember = null; } ////// Initializes a new instance of /// the ///class. /// /// public ComplexBindingPropertiesAttribute(string dataSource) { this.dataSource = dataSource; this.dataMember = null; } ////// Initializes a new instance of /// the ///class. /// /// public ComplexBindingPropertiesAttribute(string dataSource, string dataMember) { this.dataSource = dataSource; this.dataMember = dataMember; } ////// Initializes a new instance of /// the ///class. /// /// public string DataSource { get { return dataSource; } } ////// Gets the name of the data source property for the component this attribute is /// bound to. /// ////// public string DataMember { get { return dataMember; } } ////// Gets the name of the data member property for the component this attribute is /// bound to. /// ////// public static readonly ComplexBindingPropertiesAttribute Default = new ComplexBindingPropertiesAttribute(); public override bool Equals(object obj) { ComplexBindingPropertiesAttribute other = obj as ComplexBindingPropertiesAttribute; return other != null && other.DataSource == dataSource && other.DataMember == dataMember; } public override int GetHashCode() { return base.GetHashCode(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Specifies the default value for the ///, which is . This /// field is read-only. /// // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.Class)] public sealed class ComplexBindingPropertiesAttribute : Attribute { private readonly string dataSource; private readonly string dataMember; ///Specifies the data source and data member properties for a component. ////// public ComplexBindingPropertiesAttribute() { this.dataSource = null; this.dataMember = null; } ////// Initializes a new instance of /// the ///class. /// /// public ComplexBindingPropertiesAttribute(string dataSource) { this.dataSource = dataSource; this.dataMember = null; } ////// Initializes a new instance of /// the ///class. /// /// public ComplexBindingPropertiesAttribute(string dataSource, string dataMember) { this.dataSource = dataSource; this.dataMember = dataMember; } ////// Initializes a new instance of /// the ///class. /// /// public string DataSource { get { return dataSource; } } ////// Gets the name of the data source property for the component this attribute is /// bound to. /// ////// public string DataMember { get { return dataMember; } } ////// Gets the name of the data member property for the component this attribute is /// bound to. /// ////// public static readonly ComplexBindingPropertiesAttribute Default = new ComplexBindingPropertiesAttribute(); public override bool Equals(object obj) { ComplexBindingPropertiesAttribute other = obj as ComplexBindingPropertiesAttribute; return other != null && other.DataSource == dataSource && other.DataMember == dataMember; } public override int GetHashCode() { return base.GetHashCode(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Specifies the default value for the ///, which is . This /// field is read-only. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Pen.cs
- WebPartHeaderCloseVerb.cs
- X509RawDataKeyIdentifierClause.cs
- ReadOnlyKeyedCollection.cs
- BamlLocalizableResource.cs
- Italic.cs
- Attribute.cs
- AccessDataSourceWizardForm.cs
- XmlArrayAttribute.cs
- LocalizeDesigner.cs
- DataGridViewDataErrorEventArgs.cs
- DataFieldEditor.cs
- XmlUnspecifiedAttribute.cs
- VariableElement.cs
- OdbcConnectionFactory.cs
- GeometryCombineModeValidation.cs
- DataFieldEditor.cs
- HandleCollector.cs
- SettingsPropertyCollection.cs
- FamilyMapCollection.cs
- SerializableAttribute.cs
- DataGridCell.cs
- ClientUrlResolverWrapper.cs
- CheckBoxStandardAdapter.cs
- KerberosRequestorSecurityToken.cs
- DataGridItemCollection.cs
- XmlCDATASection.cs
- UpDownBase.cs
- UpdateRecord.cs
- TransactionManager.cs
- TextEffectResolver.cs
- ComPlusTraceRecord.cs
- DESCryptoServiceProvider.cs
- InstanceData.cs
- SerialPinChanges.cs
- FormViewInsertedEventArgs.cs
- ClientBuildManager.cs
- CodeAttributeDeclaration.cs
- QueryContinueDragEventArgs.cs
- RowType.cs
- TimeoutTimer.cs
- Script.cs
- ToolStripProgressBar.cs
- DataControlFieldCell.cs
- WizardStepBase.cs
- DataServiceHostFactory.cs
- UIElementPropertyUndoUnit.cs
- ChannelTraceRecord.cs
- ToolBarButton.cs
- Panel.cs
- CacheDependency.cs
- TabletCollection.cs
- DesignerCategoryAttribute.cs
- EllipseGeometry.cs
- DispatcherProcessingDisabled.cs
- MobileControlDesigner.cs
- ResizeGrip.cs
- TextOnlyOutput.cs
- WebPartEventArgs.cs
- AssemblyAttributesGoHere.cs
- AvTraceFormat.cs
- Timeline.cs
- OrCondition.cs
- XmlSchemaInclude.cs
- ServicesExceptionNotHandledEventArgs.cs
- PropertySourceInfo.cs
- EntityCommandDefinition.cs
- SqlClientWrapperSmiStream.cs
- BaseDataBoundControlDesigner.cs
- SerialErrors.cs
- ScaleTransform.cs
- CurrentChangedEventManager.cs
- SymDocumentType.cs
- AndCondition.cs
- ReadOnlyCollectionBase.cs
- PositiveTimeSpanValidatorAttribute.cs
- CqlIdentifiers.cs
- CollectionBase.cs
- JoinGraph.cs
- LineServicesCallbacks.cs
- GPRECT.cs
- SessionStateContainer.cs
- AsyncDataRequest.cs
- CurrentChangedEventManager.cs
- DataGridSortCommandEventArgs.cs
- MetadataConversionError.cs
- SerializableAttribute.cs
- TypeToStringValueConverter.cs
- WpfGeneratedKnownProperties.cs
- MappingItemCollection.cs
- TextMetrics.cs
- WebPartActionVerb.cs
- LinkedList.cs
- XPathAncestorQuery.cs
- HttpException.cs
- CopyOnWriteList.cs
- COM2ExtendedUITypeEditor.cs
- StyleCollection.cs
- Selection.cs
- MonitorWrapper.cs