Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Design / ToolboxItemAttribute.cs / 1305376 / ToolboxItemAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- // SECREVIEW: remove this attribute once bug#411883 is fixed. [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2113:SecureLateBindingMethods", Scope="member", Target="System.ComponentModel.ToolboxItemAttribute.get_ToolboxItemType():System.Type")] namespace System.ComponentModel { using System; using System.Diagnostics; using System.Globalization; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.All)] public class ToolboxItemAttribute : Attribute { private Type toolboxItemType; private string toolboxItemTypeName; ////// Specifies attributes for a toolbox item. /// ////// public static readonly ToolboxItemAttribute Default = new ToolboxItemAttribute("System.Drawing.Design.ToolboxItem, " + AssemblyRef.SystemDrawing); ////// Initializes a new instance of ToolboxItemAttribute and sets the type to /// IComponent. /// ////// public static readonly ToolboxItemAttribute None = new ToolboxItemAttribute(false); ////// Initializes a new instance of ToolboxItemAttribute and sets the type to /// ///. /// /// public override bool IsDefaultAttribute() { return this.Equals(Default); } ////// Gets whether the attribute is the default attribute. /// ////// public ToolboxItemAttribute(bool defaultType) { if (defaultType) { toolboxItemTypeName = "System.Drawing.Design.ToolboxItem, " + AssemblyRef.SystemDrawing; } } ////// Initializes a new instance of ToolboxItemAttribute and /// specifies if default values should be used. /// ////// public ToolboxItemAttribute(string toolboxItemTypeName) { string temp = toolboxItemTypeName.ToUpper(CultureInfo.InvariantCulture); Debug.Assert(temp.IndexOf(".DLL") == -1, "Came across: " + toolboxItemTypeName + " . Please remove the .dll extension"); this.toolboxItemTypeName = toolboxItemTypeName; } ////// Initializes a new instance of ToolboxItemAttribute and /// specifies the name of the type. /// ////// public ToolboxItemAttribute(Type toolboxItemType) { this.toolboxItemType = toolboxItemType; this.toolboxItemTypeName = toolboxItemType.AssemblyQualifiedName; } ////// Initializes a new instance of ToolboxItemAttribute and /// specifies the type of the toolbox item. /// ////// public Type ToolboxItemType { get{ if (toolboxItemType == null) { if (toolboxItemTypeName != null) { try { toolboxItemType = Type.GetType(toolboxItemTypeName, true); } catch (Exception ex) { throw new ArgumentException(SR.GetString(SR.ToolboxItemAttributeFailedGetType, toolboxItemTypeName), ex); } } } return toolboxItemType; } } public string ToolboxItemTypeName { get { if (toolboxItemTypeName == null) { return String.Empty; } return toolboxItemTypeName; } } public override bool Equals(object obj) { if (obj == this) { return true; } ToolboxItemAttribute other = obj as ToolboxItemAttribute; return (other != null) && (other.ToolboxItemTypeName == ToolboxItemTypeName); } public override int GetHashCode() { if (toolboxItemTypeName != null) { return toolboxItemTypeName.GetHashCode(); } return base.GetHashCode(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets the toolbox item's type. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- // SECREVIEW: remove this attribute once bug#411883 is fixed. [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2113:SecureLateBindingMethods", Scope="member", Target="System.ComponentModel.ToolboxItemAttribute.get_ToolboxItemType():System.Type")] namespace System.ComponentModel { using System; using System.Diagnostics; using System.Globalization; using System.Security.Permissions; ////// [AttributeUsage(AttributeTargets.All)] public class ToolboxItemAttribute : Attribute { private Type toolboxItemType; private string toolboxItemTypeName; ////// Specifies attributes for a toolbox item. /// ////// public static readonly ToolboxItemAttribute Default = new ToolboxItemAttribute("System.Drawing.Design.ToolboxItem, " + AssemblyRef.SystemDrawing); ////// Initializes a new instance of ToolboxItemAttribute and sets the type to /// IComponent. /// ////// public static readonly ToolboxItemAttribute None = new ToolboxItemAttribute(false); ////// Initializes a new instance of ToolboxItemAttribute and sets the type to /// ///. /// /// public override bool IsDefaultAttribute() { return this.Equals(Default); } ////// Gets whether the attribute is the default attribute. /// ////// public ToolboxItemAttribute(bool defaultType) { if (defaultType) { toolboxItemTypeName = "System.Drawing.Design.ToolboxItem, " + AssemblyRef.SystemDrawing; } } ////// Initializes a new instance of ToolboxItemAttribute and /// specifies if default values should be used. /// ////// public ToolboxItemAttribute(string toolboxItemTypeName) { string temp = toolboxItemTypeName.ToUpper(CultureInfo.InvariantCulture); Debug.Assert(temp.IndexOf(".DLL") == -1, "Came across: " + toolboxItemTypeName + " . Please remove the .dll extension"); this.toolboxItemTypeName = toolboxItemTypeName; } ////// Initializes a new instance of ToolboxItemAttribute and /// specifies the name of the type. /// ////// public ToolboxItemAttribute(Type toolboxItemType) { this.toolboxItemType = toolboxItemType; this.toolboxItemTypeName = toolboxItemType.AssemblyQualifiedName; } ////// Initializes a new instance of ToolboxItemAttribute and /// specifies the type of the toolbox item. /// ////// public Type ToolboxItemType { get{ if (toolboxItemType == null) { if (toolboxItemTypeName != null) { try { toolboxItemType = Type.GetType(toolboxItemTypeName, true); } catch (Exception ex) { throw new ArgumentException(SR.GetString(SR.ToolboxItemAttributeFailedGetType, toolboxItemTypeName), ex); } } } return toolboxItemType; } } public string ToolboxItemTypeName { get { if (toolboxItemTypeName == null) { return String.Empty; } return toolboxItemTypeName; } } public override bool Equals(object obj) { if (obj == this) { return true; } ToolboxItemAttribute other = obj as ToolboxItemAttribute; return (other != null) && (other.ToolboxItemTypeName == ToolboxItemTypeName); } public override int GetHashCode() { if (toolboxItemTypeName != null) { return toolboxItemTypeName.GetHashCode(); } return base.GetHashCode(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets the toolbox item's type. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SafePipeHandle.cs
- _FtpDataStream.cs
- HorizontalAlignConverter.cs
- NavigationExpr.cs
- ActivityDefaults.cs
- Emitter.cs
- MobileControlsSection.cs
- ThicknessConverter.cs
- sitestring.cs
- MessageQueueCriteria.cs
- InputMethod.cs
- CookielessHelper.cs
- DelegateHelpers.cs
- DataTemplateSelector.cs
- TableLayoutPanelCellPosition.cs
- TemplateAction.cs
- MsmqChannelFactory.cs
- LookupNode.cs
- ManagedFilter.cs
- OdbcTransaction.cs
- GeometryModel3D.cs
- WebControlsSection.cs
- SymbolTable.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- BooleanAnimationUsingKeyFrames.cs
- OutputCacheModule.cs
- AttachedAnnotationChangedEventArgs.cs
- SignerInfo.cs
- ModuleConfigurationInfo.cs
- FixedSchema.cs
- RequestChannelBinder.cs
- XhtmlConformanceSection.cs
- Helpers.cs
- IdnMapping.cs
- DbDataReader.cs
- BeginEvent.cs
- CodeConditionStatement.cs
- CompModSwitches.cs
- UInt32Storage.cs
- SinglePageViewer.cs
- AdapterDictionary.cs
- DashStyles.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- ColorConvertedBitmap.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- ClientCultureInfo.cs
- IInstanceTable.cs
- EasingKeyFrames.cs
- EventMap.cs
- SpeechRecognizer.cs
- StreamResourceInfo.cs
- WebPartChrome.cs
- InvalidEnumArgumentException.cs
- Span.cs
- EdmProperty.cs
- PersonalizationProvider.cs
- ColorTransformHelper.cs
- TextCharacters.cs
- MsiStyleLogWriter.cs
- UnsafeNetInfoNativeMethods.cs
- NodeLabelEditEvent.cs
- SynchronizedInputProviderWrapper.cs
- SymbolMethod.cs
- BitmapEffectRenderDataResource.cs
- RelationshipEnd.cs
- Composition.cs
- StateWorkerRequest.cs
- TableSectionStyle.cs
- SingleConverter.cs
- CodeDelegateInvokeExpression.cs
- COAUTHIDENTITY.cs
- UTF8Encoding.cs
- Main.cs
- SoapInteropTypes.cs
- WebBrowserDocumentCompletedEventHandler.cs
- BuildResult.cs
- ImportContext.cs
- TreeNodeClickEventArgs.cs
- SplayTreeNode.cs
- BufferedWebEventProvider.cs
- LocalBuilder.cs
- GroupDescription.cs
- GeneralTransform3DGroup.cs
- XmlSchemaValidationException.cs
- ListBoxItemWrapperAutomationPeer.cs
- DataKeyPropertyAttribute.cs
- CompModSwitches.cs
- InstallHelper.cs
- NetworkStream.cs
- QuerySetOp.cs
- SeverityFilter.cs
- X509IssuerSerialKeyIdentifierClause.cs
- MbpInfo.cs
- HttpMethodAttribute.cs
- CodeDomConfigurationHandler.cs
- PathFigureCollection.cs
- TextAction.cs
- LogicalCallContext.cs
- CultureTableRecord.cs
- OutputCacheModule.cs