Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- ConnectionPoint.cs
- BamlLocalizer.cs
- ContextQuery.cs
- SkewTransform.cs
- SocketStream.cs
- JulianCalendar.cs
- UrlAuthFailedErrorFormatter.cs
- SerializationStore.cs
- _NetRes.cs
- ChildTable.cs
- PathGeometry.cs
- SafeFileMappingHandle.cs
- HiddenFieldPageStatePersister.cs
- EntityCommandCompilationException.cs
- SpeechSynthesizer.cs
- TitleStyle.cs
- QilIterator.cs
- XmlEventCache.cs
- HttpWebRequestElement.cs
- FormClosingEvent.cs
- TextBox.cs
- ClientSettingsProvider.cs
- ConstructorNeedsTagAttribute.cs
- UriExt.cs
- ClientTargetSection.cs
- TableChangeProcessor.cs
- ComponentConverter.cs
- SymbolMethod.cs
- NativeCppClassAttribute.cs
- NodeLabelEditEvent.cs
- DoubleLink.cs
- Parsers.cs
- ThreadStaticAttribute.cs
- SessionStateModule.cs
- CancelEventArgs.cs
- TimerElapsedEvenArgs.cs
- InputScope.cs
- HttpClientCertificate.cs
- isolationinterop.cs
- Crypto.cs
- PostBackOptions.cs
- Binding.cs
- ScriptingJsonSerializationSection.cs
- GroupBox.cs
- CustomErrorCollection.cs
- ViewBase.cs
- SizeConverter.cs
- linebase.cs
- SplitterCancelEvent.cs
- JulianCalendar.cs
- CrossSiteScriptingValidation.cs
- SqlProviderServices.cs
- LocalizableAttribute.cs
- AttachmentCollection.cs
- ReflectPropertyDescriptor.cs
- PrimitiveXmlSerializers.cs
- AbstractExpressions.cs
- ExpressionParser.cs
- FixedSOMElement.cs
- SystemIcmpV6Statistics.cs
- SoapAttributeOverrides.cs
- HandleExceptionArgs.cs
- TextTreeInsertUndoUnit.cs
- GregorianCalendarHelper.cs
- XmlDataImplementation.cs
- SharedPersonalizationStateInfo.cs
- ButtonAutomationPeer.cs
- ContentTypeSettingClientMessageFormatter.cs
- CacheHelper.cs
- HandlerFactoryWrapper.cs
- WebPartEditVerb.cs
- AssociatedControlConverter.cs
- counter.cs
- DecoderFallback.cs
- SymmetricAlgorithm.cs
- TableRowGroupCollection.cs
- IndexedString.cs
- WindowsHyperlink.cs
- QilPatternVisitor.cs
- WebConfigurationManager.cs
- HttpCachePolicyElement.cs
- DataAdapter.cs
- QueryStatement.cs
- Viewport2DVisual3D.cs
- MSG.cs
- MediaPlayer.cs
- TypeSystem.cs
- PropertyMetadata.cs
- InheritanceContextChangedEventManager.cs
- OneOfScalarConst.cs
- SchemaTableOptionalColumn.cs
- TypeRestriction.cs
- Configuration.cs
- DataGridColumnCollection.cs
- sqlcontext.cs
- localization.cs
- Memoizer.cs
- ToolStripPanelRenderEventArgs.cs
- OperationContractGenerationContext.cs
- DataConnectionHelper.cs