Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / ListBindableAttribute.cs / 1 / ListBindableAttribute.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.All)] public sealed class ListBindableAttribute : Attribute { ///[To be supplied.] ////// public static readonly ListBindableAttribute Yes = new ListBindableAttribute(true); ///[To be supplied.] ////// public static readonly ListBindableAttribute No = new ListBindableAttribute(false); ///[To be supplied.] ////// public static readonly ListBindableAttribute Default = Yes; private bool listBindable = false; private bool isDefault = false; ///[To be supplied.] ////// public ListBindableAttribute(bool listBindable) { this.listBindable = listBindable; } ///[To be supplied.] ////// public ListBindableAttribute(BindableSupport flags) { this.listBindable = (flags != BindableSupport.No); this.isDefault = (flags == BindableSupport.Default); } ///[To be supplied.] ////// public bool ListBindable { get { return listBindable; } } ///[To be supplied.] ////// public override bool Equals(object obj) { if (obj == this) { return true; } ListBindableAttribute other = obj as ListBindableAttribute; return other != null && other.ListBindable == listBindable; } ///[To be supplied.] ////// public override int GetHashCode() { return base.GetHashCode(); } ////// Returns the hashcode for this object. /// ////// public override bool IsDefaultAttribute() { return (this.Equals(Default) || isDefault); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using System; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.All)] public sealed class ListBindableAttribute : Attribute { ///[To be supplied.] ////// public static readonly ListBindableAttribute Yes = new ListBindableAttribute(true); ///[To be supplied.] ////// public static readonly ListBindableAttribute No = new ListBindableAttribute(false); ///[To be supplied.] ////// public static readonly ListBindableAttribute Default = Yes; private bool listBindable = false; private bool isDefault = false; ///[To be supplied.] ////// public ListBindableAttribute(bool listBindable) { this.listBindable = listBindable; } ///[To be supplied.] ////// public ListBindableAttribute(BindableSupport flags) { this.listBindable = (flags != BindableSupport.No); this.isDefault = (flags == BindableSupport.Default); } ///[To be supplied.] ////// public bool ListBindable { get { return listBindable; } } ///[To be supplied.] ////// public override bool Equals(object obj) { if (obj == this) { return true; } ListBindableAttribute other = obj as ListBindableAttribute; return other != null && other.ListBindable == listBindable; } ///[To be supplied.] ////// public override int GetHashCode() { return base.GetHashCode(); } ////// Returns the hashcode for this object. /// ////// public override bool IsDefaultAttribute() { return (this.Equals(Default) || isDefault); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TransformGroup.cs
- StrongNameIdentityPermission.cs
- IsolatedStorageFileStream.cs
- XmlSchemaAnnotated.cs
- OpenFileDialog.cs
- FormsAuthenticationConfiguration.cs
- FamilyMap.cs
- QueryStringHandler.cs
- ValidationSettings.cs
- ObjectListField.cs
- SafeNativeMethods.cs
- Screen.cs
- BindingOperations.cs
- DictionaryEntry.cs
- SystemResources.cs
- TokenDescriptor.cs
- NavigationFailedEventArgs.cs
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- PlatformCulture.cs
- GenericsInstances.cs
- DeferredSelectedIndexReference.cs
- PreDigestedSignedInfo.cs
- AliasedSlot.cs
- HtmlHistory.cs
- SpellerInterop.cs
- DesignTimeVisibleAttribute.cs
- ContentPresenter.cs
- PrintEvent.cs
- SettingsProviderCollection.cs
- OleDbParameter.cs
- RichTextBoxAutomationPeer.cs
- WorkflowServiceHostFactory.cs
- IndexingContentUnit.cs
- Wizard.cs
- XmlDsigSep2000.cs
- XmlStringTable.cs
- BinarySerializer.cs
- QuadraticBezierSegment.cs
- XamlSerializationHelper.cs
- XmlSchema.cs
- MessageHeaderDescription.cs
- SymbolMethod.cs
- XmlDataLoader.cs
- SchemaType.cs
- HandlerFactoryWrapper.cs
- DataListComponentEditor.cs
- CellIdBoolean.cs
- Utilities.cs
- GregorianCalendar.cs
- PromptStyle.cs
- WebPartEditorOkVerb.cs
- VirtualPathProvider.cs
- DataSourceExpression.cs
- BooleanFunctions.cs
- XsltCompileContext.cs
- Currency.cs
- CapabilitiesAssignment.cs
- ProtocolInformationReader.cs
- SqlSupersetValidator.cs
- DbExpressionVisitor.cs
- SchemaImporterExtension.cs
- PointKeyFrameCollection.cs
- SplineKeyFrames.cs
- MaskInputRejectedEventArgs.cs
- WebColorConverter.cs
- QuadTree.cs
- MissingMethodException.cs
- FrameworkReadOnlyPropertyMetadata.cs
- BitmapImage.cs
- HttpEncoder.cs
- ImageAutomationPeer.cs
- ActiveXHost.cs
- ZoneLinkButton.cs
- COM2PictureConverter.cs
- WebPartManagerInternals.cs
- CompilerScopeManager.cs
- Enumerable.cs
- DesignerAutoFormatStyle.cs
- Win32Exception.cs
- DescendantBaseQuery.cs
- ForEachAction.cs
- WebHttpElement.cs
- XPathParser.cs
- BehaviorEditorPart.cs
- HtmlTableRowCollection.cs
- X509SecurityTokenAuthenticator.cs
- EdmMember.cs
- OleDbError.cs
- COM2ExtendedBrowsingHandler.cs
- ZipIOCentralDirectoryFileHeader.cs
- ExpressionsCollectionConverter.cs
- ValidateNames.cs
- LayoutManager.cs
- XamlSerializerUtil.cs
- ValidationHelper.cs
- DataStreams.cs
- IdentityNotMappedException.cs
- OpenTypeLayout.cs
- ExecutedRoutedEventArgs.cs
- FloatUtil.cs