Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / CompMod / System / ComponentModel / BindableAttribute.cs / 1 / BindableAttribute.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 BindableAttribute : Attribute { ///Specifies whether a property is appropriate to bind data /// to. ////// public static readonly BindableAttribute Yes = new BindableAttribute(true); ////// Specifies that a property is appropriate to bind data to. This /// ///field is read-only. /// /// public static readonly BindableAttribute No = new BindableAttribute(false); ////// Specifies that a property is not appropriate to bind /// data to. This ///field is read-only. /// /// public static readonly BindableAttribute Default = No; private bool bindable = false; private bool isDefault = false; private BindingDirection direction; ////// Specifies the default value for the ///, /// which is . This field is /// read-only. /// /// public BindableAttribute(bool bindable) : this(bindable, BindingDirection.OneWay) { } ////// Initializes a new instance of the ///class. /// /// public BindableAttribute(bool bindable, BindingDirection direction) { this.bindable = bindable; this.direction = direction; } ////// Initializes a new instance of the ///class. /// /// public BindableAttribute(BindableSupport flags) : this(flags, BindingDirection.OneWay) { } ////// Initializes a new instance of the ///class. /// /// public BindableAttribute(BindableSupport flags, BindingDirection direction) { this.bindable = (flags != BindableSupport.No); this.isDefault = (flags == BindableSupport.Default); this.direction = direction; } ////// Initializes a new instance of the ///class. /// /// public bool Bindable { get { return bindable; } } ////// Gets a value indicating /// whether a property is appropriate to bind data to. /// ////// public BindingDirection Direction { get { return direction; } } ////// Gets a value indicating /// the direction(s) this property be bound to data. /// ////// /// public override bool Equals(object obj) { if (obj == this) { return true; } if (obj != null && obj is BindableAttribute) { return (((BindableAttribute)obj).Bindable == bindable); } return false; } ////// public override int GetHashCode() { return bindable.GetHashCode(); } ///[To be supplied.] ////// ///public override bool IsDefaultAttribute() { return (this.Equals(Default) || isDefault); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // 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 BindableAttribute : Attribute { ///Specifies whether a property is appropriate to bind data /// to. ////// public static readonly BindableAttribute Yes = new BindableAttribute(true); ////// Specifies that a property is appropriate to bind data to. This /// ///field is read-only. /// /// public static readonly BindableAttribute No = new BindableAttribute(false); ////// Specifies that a property is not appropriate to bind /// data to. This ///field is read-only. /// /// public static readonly BindableAttribute Default = No; private bool bindable = false; private bool isDefault = false; private BindingDirection direction; ////// Specifies the default value for the ///, /// which is . This field is /// read-only. /// /// public BindableAttribute(bool bindable) : this(bindable, BindingDirection.OneWay) { } ////// Initializes a new instance of the ///class. /// /// public BindableAttribute(bool bindable, BindingDirection direction) { this.bindable = bindable; this.direction = direction; } ////// Initializes a new instance of the ///class. /// /// public BindableAttribute(BindableSupport flags) : this(flags, BindingDirection.OneWay) { } ////// Initializes a new instance of the ///class. /// /// public BindableAttribute(BindableSupport flags, BindingDirection direction) { this.bindable = (flags != BindableSupport.No); this.isDefault = (flags == BindableSupport.Default); this.direction = direction; } ////// Initializes a new instance of the ///class. /// /// public bool Bindable { get { return bindable; } } ////// Gets a value indicating /// whether a property is appropriate to bind data to. /// ////// public BindingDirection Direction { get { return direction; } } ////// Gets a value indicating /// the direction(s) this property be bound to data. /// ////// /// public override bool Equals(object obj) { if (obj == this) { return true; } if (obj != null && obj is BindableAttribute) { return (((BindableAttribute)obj).Bindable == bindable); } return false; } ////// public override int GetHashCode() { return bindable.GetHashCode(); } ///[To be supplied.] ////// ///public override bool IsDefaultAttribute() { return (this.Equals(Default) || isDefault); } } } // 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
- ConnectionsZone.cs
- KeyedHashAlgorithm.cs
- AsyncOperationContext.cs
- ListControl.cs
- StylusPointCollection.cs
- ActivityBindForm.Designer.cs
- RepeatInfo.cs
- HtmlTableRow.cs
- Separator.cs
- MsmqTransportSecurity.cs
- GlobalProxySelection.cs
- XamlClipboardData.cs
- DocumentPageViewAutomationPeer.cs
- ComNativeDescriptor.cs
- XmlNamespaceMapping.cs
- FixedDocument.cs
- SqlMethodTransformer.cs
- Debug.cs
- ActionItem.cs
- IdentityHolder.cs
- SqlNotificationRequest.cs
- TemplateModeChangedEventArgs.cs
- ActivityExecutor.cs
- ControlCollection.cs
- CommandEventArgs.cs
- HttpServerVarsCollection.cs
- Rights.cs
- UnsafeNativeMethods.cs
- DesignerProperties.cs
- ServiceModelConfiguration.cs
- DynamicILGenerator.cs
- DetailsViewActionList.cs
- XamlClipboardData.cs
- ToolStripDesignerAvailabilityAttribute.cs
- PartDesigner.cs
- shaper.cs
- ImplicitInputBrush.cs
- MenuItemCollection.cs
- HostedElements.cs
- TextDecorations.cs
- SelectedGridItemChangedEvent.cs
- StringSorter.cs
- FaultDescriptionCollection.cs
- ConfigurationElementProperty.cs
- StrokeNodeOperations.cs
- HttpCacheParams.cs
- ConnectorRouter.cs
- ListViewInsertionMark.cs
- HttpDebugHandler.cs
- ToolZone.cs
- ListViewItem.cs
- AnchoredBlock.cs
- MetadataPropertyAttribute.cs
- Rectangle.cs
- SchemaElement.cs
- DbExpressionVisitor_TResultType.cs
- UpdatePanelTriggerCollection.cs
- WebPartTransformerCollection.cs
- EncoderParameters.cs
- ClientSettingsProvider.cs
- HostedImpersonationContext.cs
- NetDataContractSerializer.cs
- PageThemeBuildProvider.cs
- EnumerationRangeValidationUtil.cs
- OdbcConnectionHandle.cs
- CapabilitiesUse.cs
- PublisherIdentityPermission.cs
- ICspAsymmetricAlgorithm.cs
- ChannelListenerBase.cs
- DateTimeFormatInfoScanner.cs
- CodePrimitiveExpression.cs
- ControlAdapter.cs
- Transform.cs
- FixedSOMLineRanges.cs
- ParseChildrenAsPropertiesAttribute.cs
- MarkupCompilePass2.cs
- PrivilegeNotHeldException.cs
- KeyEventArgs.cs
- ProbeDuplex11AsyncResult.cs
- JoinSymbol.cs
- isolationinterop.cs
- DefaultAssemblyResolver.cs
- HttpProtocolReflector.cs
- ProvidePropertyAttribute.cs
- TypeSystemProvider.cs
- DES.cs
- DefaultMemberAttribute.cs
- CompatibleComparer.cs
- ResolveMatches11.cs
- TrustLevelCollection.cs
- NonBatchDirectoryCompiler.cs
- ContextProperty.cs
- WorkflowInstanceProvider.cs
- SynchronizedInputProviderWrapper.cs
- Win32KeyboardDevice.cs
- FilePrompt.cs
- DeflateStream.cs
- RequestNavigateEventArgs.cs
- IncrementalReadDecoders.cs
- QueryCreatedEventArgs.cs