Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- ClassData.cs
- EventLogPermissionHolder.cs
- Animatable.cs
- Int32Collection.cs
- TypedColumnHandler.cs
- RootDesignerSerializerAttribute.cs
- UIElement.cs
- DelegateSerializationHolder.cs
- CodeMemberProperty.cs
- PTProvider.cs
- SelectedDatesCollection.cs
- XslTransform.cs
- StateMachine.cs
- DecimalConstantAttribute.cs
- Authorization.cs
- QilFactory.cs
- ObjectList.cs
- NonPrimarySelectionGlyph.cs
- AddInContractAttribute.cs
- MLangCodePageEncoding.cs
- ConfigurationStrings.cs
- EventLogTraceListener.cs
- PathFigureCollectionConverter.cs
- PropertyManager.cs
- QuaternionIndependentAnimationStorage.cs
- CommentEmitter.cs
- Table.cs
- ListView.cs
- SqlDataSourceCache.cs
- BrushMappingModeValidation.cs
- ScriptingWebServicesSectionGroup.cs
- QueryCacheKey.cs
- SQLSingle.cs
- APCustomTypeDescriptor.cs
- Viewport3DAutomationPeer.cs
- SelectionItemPattern.cs
- WindowsSecurityToken.cs
- DataGridColumnsPage.cs
- ResourceContainer.cs
- IndexedEnumerable.cs
- DesignerVerb.cs
- IdentityManager.cs
- FixedSOMTableRow.cs
- CaseExpr.cs
- Lock.cs
- ExtensibleSyndicationObject.cs
- DesignTimeVisibleAttribute.cs
- RemoteWebConfigurationHostServer.cs
- CompensatableTransactionScopeActivity.cs
- DataSysAttribute.cs
- UInt16Storage.cs
- WebPartCatalogAddVerb.cs
- ConfigXmlText.cs
- HttpRequest.cs
- SmtpMail.cs
- XmlQueryCardinality.cs
- TabControl.cs
- CatalogPart.cs
- EntityClientCacheEntry.cs
- XmlWellformedWriter.cs
- StringFunctions.cs
- XhtmlBasicControlAdapter.cs
- ComboBoxItem.cs
- RsaElement.cs
- NetworkStream.cs
- StateItem.cs
- SqlStream.cs
- SystemSounds.cs
- IImplicitResourceProvider.cs
- PassportAuthenticationEventArgs.cs
- MetadataArtifactLoaderResource.cs
- HttpPostedFileWrapper.cs
- DispatcherEventArgs.cs
- SudsParser.cs
- ADMembershipProvider.cs
- QuotedPairReader.cs
- KeyboardEventArgs.cs
- AesCryptoServiceProvider.cs
- FlowDocumentPage.cs
- LayoutManager.cs
- MetafileHeader.cs
- ObjectSet.cs
- ColorInterpolationModeValidation.cs
- UpdatableWrapper.cs
- PixelFormats.cs
- ArgumentException.cs
- ObjectDataProvider.cs
- SQLInt64Storage.cs
- NetworkInformationPermission.cs
- CodeExpressionRuleDeclaration.cs
- XmlSerializerAssemblyAttribute.cs
- InputLanguageSource.cs
- ReadingWritingEntityEventArgs.cs
- PowerModeChangedEventArgs.cs
- HtmlInputText.cs
- DictionaryBase.cs
- FullTrustAssembliesSection.cs
- BooleanAnimationUsingKeyFrames.cs
- EditorZoneBase.cs
- Variant.cs