Click or drag to resize

ComponentInfo Class

A ComponentInfo holds information about a component.
Inheritance Hierarchy
SystemObject
  NetQuarryComponentInfo

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
[SerializableAttribute]
public class ComponentInfo : ICloneable, 
	IEAPBase, ICacheable

The ComponentInfo type exposes the following members.

Constructors
  NameDescription
Public methodComponentInfo
Initializes a new instance of the object.
Top
Properties
  NameDescription
Public propertyAssembly
The name of the assembly (typically the .DLL name). This value is not required for ASCX files that have the Assembly attribute specified in the ASCX file.
Public propertyAttributes
This component's ComponentAttrs.
Public propertyComponent
The name of the component. This value should be the createable class including the namespace of the component.
Public propertyComponentID
The component's ID. This value is a 32 character GUID
Public propertyComponentType
The type of the component. One of the following: ext, ascx, renderer, template, handler
Public propertyFullPath
Returns the full path to the assembly
Public propertyName
The name of the component
Public propertyPath
The full path to the assembly. Typically this is only necessary for Extension type components.
Public propertyProperties
The properties collection for the collection.
Public propertyTextItems
The localized text for the collection.
Top
Methods
  NameDescription
Public methodClone
The Clone method creates a copy of this object.
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodLoad
Loads the component represented by this info object.
Public methodLoad(String)
Loads the component represented by this info object. An appropriate AssemblyLoadFail exception will be thrown if the component could not be loaded for any reason.
Public methodLoad(String, Boolean)
Loads the component represented by this info object.
Public methodLoadAssembly
Load the assembly for this component if not already loaded. If already loaded, just return that assembly.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodEqualValue
Determines if the object value is equal to another object. If the two objects are null, then this returns true. There is special handling for guid comparisons (since a guid could be a string formatted in up to 3 different ways). If the special guid handling is not performed, then the object.Equals method is used.
(Defined by EAPUtil.)
Top
Remarks

Components are described in metadata using the NetQuarry Studio.

See Also