Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / ComponentModel / PasswordPropertyTextAttribute.cs / 1 / PasswordPropertyTextAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System; using System.Security.Permissions; ////// If this attribute is placed on a property or a type, its text representation in a property window /// will appear as dots or astrisks to indicate a password field. This indidation in no way /// represents any type of encryption or security. /// [AttributeUsage(AttributeTargets.All)] public sealed class PasswordPropertyTextAttribute : Attribute { ////// Sets the System.ComponentModel.Design.PasswordPropertyText /// attribute by default to true. /// public static readonly PasswordPropertyTextAttribute Yes = new PasswordPropertyTextAttribute(true); ////// Sets the System.ComponentModel.Design.PasswordPropertyText /// attribute by default to false. /// public static readonly PasswordPropertyTextAttribute No = new PasswordPropertyTextAttribute(false); ////// Sets the System.ComponentModel.Design.PasswordPropertyText /// attribute by default to false. /// public static readonly PasswordPropertyTextAttribute Default = No; private bool _password; ////// Creates a default PasswordPropertyTextAttribute. /// public PasswordPropertyTextAttribute() : this(false) { } ////// Creates a PasswordPropertyTextAttribute with the given password value. /// public PasswordPropertyTextAttribute(bool password) { _password = password; } ////// Gets a value indicating if the property this attribute is defined for should be shown as password text. /// public bool Password { get { return _password; } } ////// Overload for object equality /// public override bool Equals(object o) { if (o is PasswordPropertyTextAttribute) { return ((PasswordPropertyTextAttribute)o).Password == _password; } return false; } ////// Returns the hashcode for this object. /// public override int GetHashCode() { return base.GetHashCode(); } ////// Gets a value indicating whether this attribute is set to true by default. /// public override bool IsDefaultAttribute() { return this.Equals(Default); } } } // 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.Security.Permissions; ////// If this attribute is placed on a property or a type, its text representation in a property window /// will appear as dots or astrisks to indicate a password field. This indidation in no way /// represents any type of encryption or security. /// [AttributeUsage(AttributeTargets.All)] public sealed class PasswordPropertyTextAttribute : Attribute { ////// Sets the System.ComponentModel.Design.PasswordPropertyText /// attribute by default to true. /// public static readonly PasswordPropertyTextAttribute Yes = new PasswordPropertyTextAttribute(true); ////// Sets the System.ComponentModel.Design.PasswordPropertyText /// attribute by default to false. /// public static readonly PasswordPropertyTextAttribute No = new PasswordPropertyTextAttribute(false); ////// Sets the System.ComponentModel.Design.PasswordPropertyText /// attribute by default to false. /// public static readonly PasswordPropertyTextAttribute Default = No; private bool _password; ////// Creates a default PasswordPropertyTextAttribute. /// public PasswordPropertyTextAttribute() : this(false) { } ////// Creates a PasswordPropertyTextAttribute with the given password value. /// public PasswordPropertyTextAttribute(bool password) { _password = password; } ////// Gets a value indicating if the property this attribute is defined for should be shown as password text. /// public bool Password { get { return _password; } } ////// Overload for object equality /// public override bool Equals(object o) { if (o is PasswordPropertyTextAttribute) { return ((PasswordPropertyTextAttribute)o).Password == _password; } return false; } ////// Returns the hashcode for this object. /// public override int GetHashCode() { return base.GetHashCode(); } ////// Gets a value indicating whether this attribute is set to true by default. /// public override bool IsDefaultAttribute() { return this.Equals(Default); } } } // 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
- StateMachine.cs
- CodeDelegateCreateExpression.cs
- EnumMember.cs
- HttpApplicationStateWrapper.cs
- HostedHttpContext.cs
- TextClipboardData.cs
- ViewBox.cs
- SqlNotificationEventArgs.cs
- RuntimeCompatibilityAttribute.cs
- HierarchicalDataSourceControl.cs
- ImageDrawing.cs
- _IPv4Address.cs
- TextCompositionManager.cs
- StorageSetMapping.cs
- DesignerDataSourceView.cs
- StickyNoteContentControl.cs
- InputEventArgs.cs
- ContractTypeNameCollection.cs
- FlowDocument.cs
- ToolboxBitmapAttribute.cs
- DescendentsWalker.cs
- ElapsedEventArgs.cs
- Matrix3D.cs
- PrinterResolution.cs
- HttpRuntimeSection.cs
- UriParserTemplates.cs
- LeftCellWrapper.cs
- FactoryMaker.cs
- ScriptResourceInfo.cs
- Utils.cs
- CharStorage.cs
- RemotingConfiguration.cs
- WebBrowsableAttribute.cs
- SqlMethodCallConverter.cs
- ASCIIEncoding.cs
- DescendentsWalker.cs
- SqlUtils.cs
- OleDbStruct.cs
- TextEffectResolver.cs
- ProcessThreadCollection.cs
- WebSysDescriptionAttribute.cs
- TargetException.cs
- PointHitTestParameters.cs
- Symbol.cs
- StreamReader.cs
- ToolStripRenderer.cs
- PerformanceCounterManager.cs
- StylusButtonCollection.cs
- TypefaceCollection.cs
- BindingMemberInfo.cs
- MobileTextWriter.cs
- ImmutableObjectAttribute.cs
- MailBnfHelper.cs
- dbdatarecord.cs
- ListDataBindEventArgs.cs
- XmlStringTable.cs
- RSAPKCS1SignatureDeformatter.cs
- TextDecorationCollection.cs
- ComplexTypeEmitter.cs
- FileDialogCustomPlace.cs
- followingsibling.cs
- SafeArrayRankMismatchException.cs
- ThicknessKeyFrameCollection.cs
- Attributes.cs
- TableHeaderCell.cs
- EventLogPermissionEntry.cs
- XmlRawWriterWrapper.cs
- TypeNameParser.cs
- NameService.cs
- HandlerWithFactory.cs
- RoutedEventValueSerializer.cs
- MouseButton.cs
- MatrixStack.cs
- XmlElement.cs
- Zone.cs
- Bitmap.cs
- XslNumber.cs
- ContainerActivationHelper.cs
- XComponentModel.cs
- _HeaderInfoTable.cs
- EntityCommandExecutionException.cs
- NotifyCollectionChangedEventArgs.cs
- ClientProxyGenerator.cs
- CodeGeneratorOptions.cs
- _ConnectionGroup.cs
- FunctionParameter.cs
- XmlLanguageConverter.cs
- DurableOperationContext.cs
- Panel.cs
- EdmEntityTypeAttribute.cs
- PackageStore.cs
- TransformerConfigurationWizardBase.cs
- TimeStampChecker.cs
- WebPartDescription.cs
- ClientRolePrincipal.cs
- EventLogWatcher.cs
- GenericParameterDataContract.cs
- JapaneseLunisolarCalendar.cs
- MimeXmlImporter.cs
- MemberInfoSerializationHolder.cs