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 / Design / ToolboxItemAttribute.cs / 1 / 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;
///
///
/// Specifies attributes for a toolbox item.
///
///
[AttributeUsage(AttributeTargets.All)]
public class ToolboxItemAttribute : Attribute {
private Type toolboxItemType;
private string toolboxItemTypeName;
///
///
/// Initializes a new instance of ToolboxItemAttribute and sets the type to
/// IComponent.
///
///
public static readonly ToolboxItemAttribute Default = new ToolboxItemAttribute("System.Drawing.Design.ToolboxItem, " + AssemblyRef.SystemDrawing);
///
///
/// Initializes a new instance of ToolboxItemAttribute and sets the type to
/// .
///
///
public static readonly ToolboxItemAttribute None = new ToolboxItemAttribute(false);
///
///
/// Gets whether the attribute is the default attribute.
///
///
public override bool IsDefaultAttribute() {
return this.Equals(Default);
}
///
///
/// Initializes a new instance of ToolboxItemAttribute and
/// specifies if default values should be used.
///
///
public ToolboxItemAttribute(bool defaultType) {
if (defaultType) {
toolboxItemTypeName = "System.Drawing.Design.ToolboxItem, " + AssemblyRef.SystemDrawing;
}
}
///
///
/// Initializes a new instance of ToolboxItemAttribute and
/// specifies the name of the type.
///
///
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 type of the toolbox item.
///
///
public ToolboxItemAttribute(Type toolboxItemType) {
this.toolboxItemType = toolboxItemType;
this.toolboxItemTypeName = toolboxItemType.AssemblyQualifiedName;
}
///
///
/// Gets the toolbox item's type.
///
///
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.
//------------------------------------------------------------------------------
//
// 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;
///
///
/// Specifies attributes for a toolbox item.
///
///
[AttributeUsage(AttributeTargets.All)]
public class ToolboxItemAttribute : Attribute {
private Type toolboxItemType;
private string toolboxItemTypeName;
///
///
/// Initializes a new instance of ToolboxItemAttribute and sets the type to
/// IComponent.
///
///
public static readonly ToolboxItemAttribute Default = new ToolboxItemAttribute("System.Drawing.Design.ToolboxItem, " + AssemblyRef.SystemDrawing);
///
///
/// Initializes a new instance of ToolboxItemAttribute and sets the type to
/// .
///
///
public static readonly ToolboxItemAttribute None = new ToolboxItemAttribute(false);
///
///
/// Gets whether the attribute is the default attribute.
///
///
public override bool IsDefaultAttribute() {
return this.Equals(Default);
}
///
///
/// Initializes a new instance of ToolboxItemAttribute and
/// specifies if default values should be used.
///
///
public ToolboxItemAttribute(bool defaultType) {
if (defaultType) {
toolboxItemTypeName = "System.Drawing.Design.ToolboxItem, " + AssemblyRef.SystemDrawing;
}
}
///
///
/// Initializes a new instance of ToolboxItemAttribute and
/// specifies the name of the type.
///
///
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 type of the toolbox item.
///
///
public ToolboxItemAttribute(Type toolboxItemType) {
this.toolboxItemType = toolboxItemType;
this.toolboxItemTypeName = toolboxItemType.AssemblyQualifiedName;
}
///
///
/// Gets the toolbox item's type.
///
///
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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- InboundActivityHelper.cs
- GetReadStreamResult.cs
- CrossContextChannel.cs
- ErrorFormatterPage.cs
- CommandID.cs
- DataSourceControl.cs
- ToolStripOverflowButton.cs
- HttpWebResponse.cs
- MobileCategoryAttribute.cs
- CurrentChangingEventArgs.cs
- InvariantComparer.cs
- XmlTextReaderImpl.cs
- COM2IDispatchConverter.cs
- DurableEnlistmentState.cs
- StylusOverProperty.cs
- MonthChangedEventArgs.cs
- GradientBrush.cs
- StateManager.cs
- ISAPIApplicationHost.cs
- InfoCardTraceRecord.cs
- ControlCachePolicy.cs
- Win32Exception.cs
- ConcurrencyBehavior.cs
- TabControlEvent.cs
- XmlNodeReader.cs
- DataGridDesigner.cs
- ProfilePropertySettingsCollection.cs
- HttpModuleAction.cs
- DependencyPropertyDescriptor.cs
- SimpleFileLog.cs
- TraceUtils.cs
- XmlSchemaNotation.cs
- IndexedGlyphRun.cs
- XmlArrayAttribute.cs
- Window.cs
- BackgroundWorker.cs
- CodeTypeParameterCollection.cs
- SQLDouble.cs
- XmlFormatWriterGenerator.cs
- _CommandStream.cs
- LoginView.cs
- MaskDesignerDialog.cs
- OutputCacheSettingsSection.cs
- DataControlFieldCell.cs
- EventHandlerList.cs
- CalendarDay.cs
- Point3D.cs
- GenericTypeParameterBuilder.cs
- NullReferenceException.cs
- PathSegmentCollection.cs
- ContextItem.cs
- ScriptModule.cs
- ThrowHelper.cs
- Parser.cs
- DetailsViewUpdateEventArgs.cs
- ButtonField.cs
- DefaultExpression.cs
- TargetConverter.cs
- BamlMapTable.cs
- RectIndependentAnimationStorage.cs
- DataKey.cs
- XmlAttributeCache.cs
- securestring.cs
- Pkcs9Attribute.cs
- UnhandledExceptionEventArgs.cs
- WsiProfilesElement.cs
- GrammarBuilder.cs
- XmlSchemaCollection.cs
- FixedSOMTableCell.cs
- WorkflowServiceBehavior.cs
- IListConverters.cs
- GeneralTransformCollection.cs
- XamlVector3DCollectionSerializer.cs
- ModelItemCollection.cs
- Int16AnimationUsingKeyFrames.cs
- XmlSchemaParticle.cs
- BoolExpr.cs
- Pkcs9Attribute.cs
- NamespaceCollection.cs
- XmlSchemaAny.cs
- Contracts.cs
- UserPreferenceChangingEventArgs.cs
- SpecialNameAttribute.cs
- _SslState.cs
- TransformFinalBlockRequest.cs
- HijriCalendar.cs
- DateTime.cs
- ContainerControlDesigner.cs
- DataGridColumnEventArgs.cs
- AspNetPartialTrustHelpers.cs
- CacheEntry.cs
- UIPermission.cs
- _OSSOCK.cs
- ElasticEase.cs
- BlockCollection.cs
- SqlNodeTypeOperators.cs
- NumericUpDownAcceleration.cs
- SkipStoryboardToFill.cs
- EdmPropertyAttribute.cs
- BrushValueSerializer.cs