You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9998 lines
654 KiB

<?xml version="1.0"?>
<doc>
<assembly>
<name>ESRI.ArcGIS.ADF</name>
</assembly>
<members>
<member name="T:ESRI.ArcGIS.ADF.Resources.IISHelperResources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.Resources.IISHelperResources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.Resources.IISHelperResources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.Resources.IISHelperResources.ErrorAccessingWebSite">
<summary>
Looks up a localized string similar to Error accessing web site on {0}: {1}.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.Resources.IISHelperResources.NoPropertyTypeMatch">
<summary>
Looks up a localized string similar to Type of new value does not match property..
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.Resources.IISHelperResources.NoReadAccess">
<summary>
Looks up a localized string similar to You do not have Read access to {0}..
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.Resources.IISHelperResources.NoWriteAccess">
<summary>
Looks up a localized string similar to You do not have Write access to {0}..
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.Resources.IISHelperResources.NoWriteModifyAccess">
<summary>
Looks up a localized string similar to You do not have Write/Modify access to {0}..
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.Resources.IISHelperResources.PropertyDoesNotExist">
<summary>
Looks up a localized string similar to Property {0} does not exist at {1}..
</summary>
</member>
<member name="T:ESRI.ArcGIS.ADF.WebProxy">
<summary>
Implementation of IWebProxy
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.WebProxy.GetProxy(System.Uri)">
<summary>
The Uri to direct the web request to
</summary>
<param name="destination"></param>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.WebProxy.IsBypassed(System.Uri)">
<summary>
Whether to bypass the proxy for the Uri
</summary>
<param name="host">Uri of the host of the web request</param>
<returns></returns>
</member>
<member name="P:ESRI.ArcGIS.ADF.WebProxy.Credentials">
<summary>
Credentials to use for the proxy authentication
</summary>
</member>
<member name="T:ESRI.ArcGIS.ADF.COMSupport.AOUninitialize">
<summary>
To help unload COM references in .NET apps,
the AOUninitialize class provides the static (Shared in VB.NET)
function Shutdown.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.COMSupport.AOUninitialize.#ctor">
<summary>
Default constructor.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.COMSupport.AOUninitialize.Shutdown">
<summary>
The AOUninitalize.Shutdown function canbe called to help clean up references to COM
objects, when a process shuts down.
</summary>
<remarks>Although the Shutdown function handles many shutdown problems in standalone
applications, but you may still experience
problems as there are COM objects that require explicit releasing;
in these cases, you may wish to refer to the <see cref="T:ESRI.ArcGIS.ADF.ComReleaser"/> class.</remarks>
</member>
<member name="T:ESRI.ArcGIS.ADF.Impersonation">
<summary>
Application Developer Framework for .NET Impersonation web control.
</summary>
<remarks>
The Impersonation class allows the web application to dynamically impersonate
a valid windows user during runtime at every request, and undo the impersonation
at the completion of the response back to the original windows Identity.
NOTE: This impersonation will override the impersonation set in the web.config file.
</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.Impersonation.impersonationContext">
<summary>
Default contstant for Login 32 Provider
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.Impersonation.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.Impersonation.LogonUser(System.String,System.String,System.String,ESRI.ArcGIS.ADF.Impersonation.LogonSessionType,ESRI.ArcGIS.ADF.Impersonation.LogonProvider,System.IntPtr@)">
<summary>
Logon User Win32 API declaration
</summary>
<param name="lpszUserName"></param>
<param name="lpszDomain"></param>
<param name="lpszPassword"></param>
<param name="dwLogonType"></param>
<param name="dwLogonProvider"></param>
<param name="phToken"></param>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Impersonation.DuplicateToken(System.IntPtr,System.Int32,System.IntPtr@)">
<summary>
Duplicate token Win32 API declaration
</summary>
<param name="hToken"></param>
<param name="impersonationLevel"></param>
<param name="hNewToken"></param>
<returns></returns>
</member>
<member name="F:ESRI.ArcGIS.ADF.Impersonation.IsImpersonating">
<summary>
Returns true if impersonating, false otherwise
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.Impersonation.IdentityObject(ESRI.ArcGIS.ADF.Identity)">
<summary>
Set the Identity of a User using the Identity class
</summary>
<param name="id">An Identity class object</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.Impersonation.Impersonate">
<summary>
Used to dynamically modify the current windows user with the value in the Identity property
</summary>
<returns>True if success, false if failed</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Impersonation.Impersonate(System.String)">
<summary>
Used to dynamically modify the current windows user with the specified user
</summary>
<param name="identity">This parameter should be the return value of function Identity.ToString() of a previously instantiated Identity object.</param>
<returns>True if success, false if failed</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Impersonation.Impersonate(System.String,ESRI.ArcGIS.ADF.Impersonation.LogonSessionType)">
<summary>
Used to dynamically modify the current windows user with the specified user
</summary>
<param name="identity">This parameter should be the return value of function Identity.ToString() of a previously instantiated Identity object.</param>
<param name="logonSessionType">The type of logon to perform.</param>
<returns>True if success, false if failed</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Impersonation.Impersonate(System.String,System.String,System.String)">
<summary>
Used to dynamically modify the current windows user with the specified user
</summary>
<param name="userName">String value that specifies the name of the user.
This is the name of the user account to log on to. If you use the UPN format, user@DNS_domain_name,
the Domain parameter must be NULL.
</param>
<param name="password">String that specifies the clear-text password for the user account specified by Username</param>
<param name="domain">String value that specifies the name of the domain or server whose account
database contains the UserName account. If this parameter is NULL, the user name must be specified
in UPN format. If this parameter is ".", the function validates the account using only the local account database.</param>
<returns>True if success, false if failed</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Impersonation.Impersonate(System.String,System.String,System.String,ESRI.ArcGIS.ADF.Impersonation.LogonSessionType)">
<summary>
Used to dynamically modify the current windows user with the specified user
</summary>
<param name="userName">String value that specifies the name of the user.
This is the name of the user account to log on to. If you use the UPN format, user@DNS_domain_name,
the Domain parameter must be NULL.
</param>
<param name="password">String that specifies the clear-text password for the user account specified by Username</param>
<param name="domain">String value that specifies the name of the domain or server whose account
<param name="logonSessionType">The type of logon to perform.</param>
database contains the UserName account. If this parameter is NULL, the user name must be specified
in UPN format. If this parameter is ".", the function validates the account using only the local account database.</param>
<returns>True if success, false if failed</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Impersonation.UndoImpersonation">
<summary>
Return to the original Windows Identity before impersonation.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.Impersonation.LogonUser(System.String,System.String,System.String,ESRI.ArcGIS.ADF.Impersonation.LogonSessionType,System.IntPtr@)">
<summary>
Managed wrapper around Win32 LogonUser API
</summary>
<param name="userName">String value that specifies the name of the user.
This is the name of the user account to log on to. If you use the UPN format, user@DNS_domain_name,
the Domain parameter must be NULL.
</param>
<param name="password">String that specifies the clear-text password for the user account specified by Username</param>
<param name="domain">String value that specifies the name of the domain or server account whose
database contains the UserName account. If this parameter is NULL, the user name must be specified
in UPN format. If this parameter is ".", the function validates the account using only the local account database.</param>
<param name="logonSessionType">The type of logon to perform.</param>
<param name="token">A pointer to a handle variable that receives a handle to a token that represents the specified user.</param>
<returns>True if success, false if failed</returns>
</member>
<member name="T:ESRI.ArcGIS.ADF.Impersonation.LogonSessionType">
<summary>
The type of login to perform
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.Impersonation.LogonSessionType.Interactive">
<summary>
Interactive
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.Impersonation.LogonSessionType.Network">
<summary>
Network
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.Impersonation.LogonSessionType.Batch">
<summary>
Batch
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.Impersonation.LogonSessionType.Service">
<summary>
Service
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.Impersonation.LogonSessionType.NetworkCleartext">
<summary>
NetworkCleartext
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.Impersonation.LogonSessionType.NewCredentials">
<summary>
NewCredentials
</summary>
</member>
<member name="T:ESRI.ArcGIS.ADF.Identity">
<summary>
An identity object to hold a user, password, and domain
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.Identity.UserName">
<summary>
User name
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.Identity.Domain">
<summary>
Domain or machine that the user belongs to
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.Identity.Password">
<summary>
Password of this user
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.Identity.#ctor">
<summary>
Initializes a new instance of the Identity Class
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.Identity.#ctor(System.String,System.String,System.String)">
<summary>
Initializes a new instance of the Identity class with the specified parameters.
</summary>
<param name="user">A login user name</param>
<param name="pwd">A login user password in clear text</param>
<param name="domain">Optional - a domain or machine name for the login user</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.Identity.ToString">
<summary>
Returns a String reprepsentation of the type.
</summary>
<returns>a string object</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Identity.FromString(System.String)">
<summary>
Returns an Identity object from an encrypted identity value
</summary>
<param name="identity">An Encrypted String for impersonation representing the identity of a valid user</param>
<returns>An Identity object</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Identity.IsNullOrEmpty(ESRI.ArcGIS.ADF.Identity)">
<summary>
Whether an identity object is null or empty
</summary>
<param name="identity">The identity object</param>
<returns>Whether the identity object is null or empty</returns>
</member>
<member name="T:ESRI.ArcGIS.ADF.Utility">
<summary>
<strong>The class supports the .NET ADF infrastructure and is not intended to be used directly from your code.</strong>
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.Utility.GetArcGISInstallDir">
<summary>
Retrieves the location where ArcGIS was installed.
</summary>
<returns>Fully qualified path to where the ArcGIS System was installed.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Utility.ReadCollectionFromXml(System.Xml.XmlReader,System.Collections.ArrayList)">
<summary>
Helper method to deserialize Collections using ArrayLists into XML
</summary>
<param name="reader"><see cref="T:System.Xml.XmlReader"/></param>
<param name="arrayList">ArrayList to populate.<br/><seealso cref="T:System.Collections.ArrayList"/></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.Utility.WriteCollectionToXml(System.Xml.XmlWriter,System.Collections.ArrayList)">
<summary>
Helper method to serialize Collections using ArrayLists into XML
</summary>
<param name="writer"><see cref="T:System.Xml.XmlWriter"/></param>
<param name="arrayList">ArrayList to serialize.<br/><seealso cref="T:System.Collections.ArrayList"/></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.Utility.SerializeXml(System.Object)">
<summary>
Helper method to assist in serializing .NET Types in XML
</summary>
<param name="o">.NET Type to serialize</param>
<returns>Serialized type as string</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Utility.DeserializeXml(System.String,System.Type)">
<summary>
Helper method to assist in de-serializing .NET types in XML
</summary>
<param name="xml">String to deserialize in XML format</param>
<param name="type">.NET Type to deserialize into</param>
<returns>.NET Type deserialized into an object
(Use this object with a cast to get the correct .NET Type)
</returns>
</member>
<member name="T:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer">
<summary>
Summary description for clsCustomLayer.
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.c_Version">
<summary>
The class version number
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_extent">
<summary>
Keep the layer's extent. Returned by the IGeoDataset::Extent property
</summary>
<remarks>The extent should be spatial-referenced to the DateFrame's spatial reference.
</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_spatialRef">
<summary>
Store the layer's underlying data spatial reference. Returned by IGeoDataset::SpatialReference.
</summary>
<remarks>This spatial reference should not be modified. Class member m_mapSpatialRef holds the map's
spatial reference and should be used in order to implement reprojection on the fly.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_mapSpatialRef">
<summary>
Store the maps's spatial reference. Set by ILayer::SpatialReference.
</summary>
<remarks>This spatial reference is set by the map. In order to support reprojection on the fly,
you should make sure that both class members m_spatialRef and m_mapSpatialRef are not null
and that each member holds different spatial reference (you can check that the factory code is different).
Then you can use method IGeometry.Project in order to reproject your geometries when the layer draw.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_sName">
<summary>
Layer's name. Returned by ILayer::Name property
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_visible">
<summary>
Flag which determines whether the layers is visible. Returned by ILayer::Visible
</summary>
<remarks>You should use this member in your inherited class in the Draw method.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_IsCached">
<summary>
determines whether the layers is cached
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_bValid">
<summary>
Flag thich determine whether the layer is valid (connected to its data source, has valid information etc.).
Returned by ILAyer::Valid.
</summary>
<remarks>You can use this flag to determine for example whether the layer can be available or not.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_MaximumScale">
<summary>
Keep the maximum scale value at which the layer will display
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_MinimumScale">
<summary>
Keep the minimum scale value at which the layer will display
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_ShowTips">
<summary>
determines whether the layers is supposed to show its MapTips
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_uid">
<summary>
The layer's UID
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_extensions">
<summary>
An arraylist to store the layer's extensions.
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_interactive">
<summary>
Indicates if the layer supports interactive effects changes
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_alpha">
<summary>
Layer transparency in percent (0 - 100)
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_brightness">
<summary>
Layer brightness in percent (-100 - 100)
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_contrast">
<summary>
Layer contrast in percent (-100 - 100)
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.m_displayFilter">
<summary>
The display filter for support layer effects
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.#ctor">
<summary>
Default Ctor
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.Load(ESRI.ArcGIS.esriSystem.IVariantStream)">
<summary>
Loads the object properties from the stream.
</summary>
<param name="Stream"></param>
<remarks>The Load method must read the data from the stream in the same order the data was
written to the stream in the Save method.
Streams are sequential; you mut ensure that your data is saved and loaded in the correct order,
so that the correct data is written to the correct member.
</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.Save(ESRI.ArcGIS.esriSystem.IVariantStream)">
<summary>
Saves the object properties to the stream.
</summary>
<param name="Stream"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.get_TipText(System.Double,System.Double,System.Double)">
<summary>
Map tip text at the specified location.
</summary>
<param name="X"></param>
<param name="Y"></param>
<param name="Tolerance"></param>
<returns>The text string that gets displayed as a map tip if ShowTips = true.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.Draw(ESRI.ArcGIS.esriSystem.esriDrawPhase,ESRI.ArcGIS.Display.IDisplay,ESRI.ArcGIS.esriSystem.ITrackCancel)">
<summary>
Draws the layer to the specified display for the given draw phase.
</summary>
<param name="drawPhase"></param>
<param name="Display"></param>
<param name="trackCancel"></param>
<remarks>This method draws the layer to the Display for the specified DrawPhase.
Use the TrackCancel object to allow the drawing of the layer to be interrupted by the user.
In order to implement you inheriting class, you must override this method</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.Dispose">
<summary>
Dispose the layer
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.RemoveExtension(System.Int32)">
<summary>
Removes the specified extension.
</summary>
<param name="Index"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.AddExtension(System.Object)">
<summary>
Adds a new extension.
</summary>
<param name="ext"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.get_Extension(System.Int32)">
<summary>
The extension at the specified index.
</summary>
<param name="Index"></param>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.ConvertToSupportedObject(ESRI.ArcGIS.esriSystem.esriArcGISVersion)">
<summary>
Convert the object to another object that is supported. This method is not implemented in this version.
</summary>
<param name="docVersion"></param>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.IsSupportedAtVersion(ESRI.ArcGIS.esriSystem.esriArcGISVersion)">
<summary>
Is this object valid at the given document version.
</summary>
<param name="docVersion"></param>
<returns></returns>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.Extent">
<summary>
The layers geodataset extent which is a union of the extents of all
the items of the layer
</summary>
<remarks>In your inheriting class, consider the following code to calculate the layer's extent:
<code>
public override IEnvelope Extent
{
get
{
m_extent = GetLayerExtent();
if (null == m_extent )
return null;
IEnvelope env = ((IClone)m_extent ).Clone() as IEnvelope;
if(null != m_layerSpatialRef)
env.Project(m_layerSpatialRef);
return env;
}
}
private IEnvelope GetLayerExtent()
{
if (null == base.m_spRef)
{
base.m_spRef = CreateGeographicSpatialReference();
}
IEnvelope env = new EnvelopeClass();
env.SpatialReference = base.m_spRef;
IPoint point = new PointClass();
point.SpatialReference = m_spRef;
foreach (DataRow r in m_table.Rows)
{
point.Y = Convert.ToDouble(r["Y"]);
point.X = Convert.ToDouble(r["X"]);
env.Union(point.Envelope);
}
return env;
}
</code>
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.SpatialReference">
<summary>
The spatial reference of the underlying data.
</summary>
<remarks>The property must return the underlying data spatial reference and
must not reporoject it into the layer's spatial reference </remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.ID">
<summary>
The ID of the object.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.ShowTips">
<summary>
Indicates if the layer shows map tips.
</summary>
<remarks>Indicates whether or not map tips are shown for the layer.
If set to True, then map tips will be shown for the layer.
You can determine the text that will be shown via TipText.
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.AreaOfInterest">
<summary>
The default area of interest for the layer. Returns the spatial-referenced extent of the layer.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.Visible">
<summary>
Indicates if the layer is currently visible.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.Cached">
<summary>
Indicates if the layer needs its own display cache.
</summary>
<remarks>This property indicates whether or not the layer requires its own display cache.
If this property is True, then the Map will use a separate display cache for the layer so
that it can be refreshed indpendently of other layers.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.MinimumScale">
<summary>
Minimum scale (representative fraction) at which the layer will display.
</summary>
<remarks>Specifies the minimum scale at which the layer will be displayed.
This means that if you zoom out beyond this scale, the layer will not display.
For example, specify 1000 to have the layer not display when zoomed out beyond 1:1000.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.Valid">
<summary>
Indicates if the layer is currently valid.
</summary>
<remarks>The valid property indicates if the layer is currently valid.
Layers that reference feature classes are valid when they hold a reference to a valid feature class.
The property does not however validate the integrity of the feature classes reference to the database.
Therefore, in rare situations if a datasource is removed after a layer is initialized,
the layer will report itself as valid but query attempts to the data source will error due to the lack
of underlying data.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.Name">
<summary>
The Layer name.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.MaximumScale">
<summary>
Maximum scale (representative fraction) at which the layer will display.
</summary>
<remarks>Specifies the maximum scale at which the layer will be displayed.
This means that if you zoom in beyond this scale, the layer will not display.
For example, specify 500 to have the layer not display when zoomed in beyond 1:500.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.SupportedDrawPhases">
<summary>
Supported draw phases.
</summary>
<remarks>Indicates the draw phases supported by the layer (esriDPGeography, esriDPAnnotation,
esriDPSelection, or any combination of the three).
The supported draw phases are defined by esriDrawPhase.
When multiple draw phases are supported, the sum of the constants is used.
For example, if SupportedDrawPhases = 3 then the layer supports drawing in the geography and annotation phases.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.ESRI#ArcGIS#Carto#ILayer#SpatialReference">
<summary>
Spatial reference for the layer.
</summary>
<remarks>This property is only used for map display, setting this property does not
change the spatial reference of the layer's underlying data.
The ArcGIS framework uses this property to pass the spatial reference from the map
to the layer in order to support on-the-fly projection.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.LastMaximumScale">
<summary>
Last maximum scale setting used by layer.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.LastMinimumScale">
<summary>
Last minimum scale setting used by layer.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.LayerDescription">
<summary>
Description for the layer.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.ExtensionCount">
<summary>
Number of extensions.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.Brightness">
<summary>
Layer brightness in percent (-100 - 100).
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.Contrast">
<summary>
Layer contrast in percent (-100 - 100).
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.SupportsBrightnessChange">
<summary>
Indicates if the layer supports brightness changes.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.SupportsContrastChange">
<summary>
Indicates if the layer supports contrast changes.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.SupportsInteractive">
<summary>
Indicates if the layer supports interactive effects changes.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.SupportsTransparency">
<summary>
Indicates if the layer supports transparency.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.Transparency">
<summary>
Layer transparency in percent (0 - 100).
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.DisplayFilter">
<summary>
Specifies the display filter used by the layer.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomLayer.UsesFilter">
<summary>
Specifies whether or not the layer uses a filter.
</summary>
<remarks> This indicates that the layer will be rasterized in Map draw.
Override this method in your inheriting class if your layer draws symbols that will
rasterize or if you draw rasters. Transparent layers are always rasterized</remarks>
</member>
<member name="T:ESRI.ArcGIS.ADF.BaseClasses.BaseMenu">
<summary>
An abstract class designed to provide an efficient and script-like way
to create new custom menu.
</summary>
</member>
<member name="T:ESRI.ArcGIS.ADF.BaseClasses.BaseCommandBar">
<summary>
An abstract class for command bar implementations. Toolbar, menu and
context menu are types of command bar.
</summary>
<remarks>Internal use only. To create new toolbars or menus, you should
inherit BaseToolbar or BaseMenu instead.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommandBar.m_barID">
<summary>
The ID string to uniquely identify a commandbar. Null by default.
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommandBar.m_barCaption">
<summary>
The caption of the command bar. Null by default.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommandBar.BeginGroup">
<summary>
Adds a separator bar on the command bar to begin a group.
</summary>
<remarks>Note to inheritors: Call this method to start a group
in your command bar definition. You should define your command bar
in the constructor.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommandBar.AddItem(System.String)">
<summary>
Add a command item to the command bar by an identifier string.
</summary>
<param name="itemID">The PROGID or CLSID of the command item</param>
<remarks>Note to inheritors: Call this method to add an item to
your command bar definition. You should define your command bar
in the constructor.</remarks>
<example>
AddItem("esriArcMapUI.ZoomInTool")
AddItem("{AD1891E4-7C79-11D0-8D7C-0080C7A4557D}")
</example>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommandBar.AddItem(System.Guid)">
<summary>
Add a command item to the command bar by a Guid.
</summary>
<param name="itemGuid">The Guid of the command item</param>
<remarks>Note to inheritors: Call this method to add an item to
your command bar definition. You should define your command bar
in the constructor.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommandBar.AddItem(System.Type)">
<summary>
Add a command item to the command bar by a type.
</summary>
<param name="itemType">The type which implements the command.</param>
<remarks>Note to inheritors: Call this method to add an item to
your command bar definition. You should define your command bar
in the constructor.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommandBar.AddItem(System.String,System.Int32)">
<summary>
Add a command item to the command bar by an identifier string
and a subtype index
</summary>
<param name="itemID">The PROGID or CLSID of the command item.</param>
<param name="subtype">Subtype of the item, starts with 1</param>
<example>
AddItem("{FBF8C3FB-0480-11D2-8D21-080009EE4E51}", 1)
</example>
<remarks>Note to inheritors: Call this method to add an item to
your command bar definition. You should define your command bar
in the constructor.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommandBar.AddItem(System.Guid,System.Int32)">
<summary>
Add a command item to the command bar by the Guid
and a subtype index.
</summary>
<param name="itemGuid">The Guid of the command item</param>
<param name="subtype">Subtype of the item, starts with 1</param>
<remarks>Note to inheritors: Call this method to add an item to
your command bar definition. You should define your command bar
in the constructor.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommandBar.AddItem(System.Type,System.Int32)">
<summary>
Add a command item to the command bar by a type
and a subtype index.
</summary>
<param name="itemType">The type which implements the command item.</param>
<param name="subtype">Subtype of the item, starts with 1</param>
<remarks>Note to inheritors: Call this method to add an item to
your command bar definition. You should define your command bar
in the constructor.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommandBar.AddItem(ESRI.ArcGIS.esriSystem.UID)">
<summary>
Add a command item to the command bar by an Unique Identifier Object (UID).
</summary>
<param name="itemUID">The UID of the command item</param>
<remarks>Note to inheritors: Call this method to add an item to
your command bar definition. You should define your command bar
in the constructor.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseMenu.GetItemInfo(System.Int32,ESRI.ArcGIS.SystemUI.IItemDef)">
<summary>
IMenuDef.GetItemInfo() implementation. Called by the framework to
find out the command item by position.
</summary>
<param name="pos">Locational index of the item on the menu.</param>
<param name="itemDef">Item definition</param>
<remarks>Note to inheritors: You do not need to call this method.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseMenu.Name">
<summary>
Name to uniquely identify this menu, returned from IMenuDef.Name property.
Null by default.
</summary>
<remarks>Note to inheritors: You can either override this property
or set the base.m_barID field directly.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseMenu.Caption">
<summary>
Caption of this menu, returned from IMenuDef.Caption property.
Null by default.
</summary>
<remarks>Note to inheritors: You can either override this property
or set the base.m_barCaption field directly.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseMenu.ItemCount">
<summary>
IMenuDef.ItemCount property implementation. Called by the framework to
get the number of command items on the menu.
</summary>
<remarks>Note to inheritors: You do not need to use this property.</remarks>
</member>
<member name="T:ESRI.ArcGIS.ADF.StringCollection">
<summary>
Summary description for StringCollection.
</summary>
</member>
<member name="T:ESRI.ArcGIS.ADF.ThreadSafeCollection">
<summary>
ThreadSafeCollection is a base class for all collections.
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.ThreadSafeCollection.m_array">
<summary>
Synchronized array list used to hold collection objects
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.ThreadSafeCollection.#ctor">
<summary>
Constructor.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.ThreadSafeCollection.Clear">
<summary>
Delete all items in this collection.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.ThreadSafeCollection.GetEnumerator">
<summary>
Gets an enumerator for the items in the collection.
</summary>
<returns>An enumerator for the items in the collection.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.ThreadSafeCollection.NameExists(System.String)">
<summary>
Indicates whether an item with the specified name exists.
</summary>
<returns>True if item exists, false if not.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.ThreadSafeCollection.generateName(System.String,System.String)">
<summary>
Generates a unique name for an item.
</summary>
<param name="name">Name of the item</param>
<param name="namebase">Base for the new name if any.</param>
<returns>A unique name for an item.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.ThreadSafeCollection.generateName(System.String)">
<summary>
Generates a unique name for an item.
</summary>
<param name="namebase">Name of the item</param>
<returns>A unique name for an item.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.ThreadSafeCollection.GetSchema">
<summary>
This method is reserved and should not be used. When implementing the IXmlSerializable interface, you should return nullNothingnullptra null reference (Nothing in Visual Basic) (Nothing in Visual Basic) from this method, and instead, if specifying a custom schema is required, apply the XmlSchemaProviderAttribute to the class.
</summary>
<returns><see cref="T:System.Xml.Schema.XmlSchema"/></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.ThreadSafeCollection.ReadXml(System.Xml.XmlReader)">
<summary>
Generates an object from its XML representation.
</summary>
<param name="reader"><see cref="T:System.Xml.XmlReader"/></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.ThreadSafeCollection.WriteXml(System.Xml.XmlWriter)">
<summary>
Converts an object into its XML representation.
</summary>
<param name="writer"><see cref="T:System.Xml.XmlWriter"/></param>
</member>
<member name="P:ESRI.ArcGIS.ADF.ThreadSafeCollection.Count">
<summary>
The number of items in this collection.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.StringCollection.#ctor">
<summary>
Default Constructor
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.StringCollection.#ctor(System.String[])">
<summary>
Constructor - Initialized with specified parameters
</summary>
<param name="strings">An array of Strings</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.StringCollection.#ctor(System.String,System.Char)">
<summary>
Constructor - Initialized with specified parameters
</summary>
<param name="itemList">Delimited string </param>
<param name="delimeter">Character delimiter used to parse itemList</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.StringCollection.ToString(System.Char)">
<summary>
Convert the String Collection to a string using the specified delimeter.
</summary>
<param name="delimeter">Character delimiter used to create string.</param>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.StringCollection.Add(System.String)">
<summary>
Adss a string to the collection.
</summary>
<param name="s">String to be added to the collection.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.StringCollection.Remove(System.String)">
<summary>
Removes a string from the collection.
</summary>
<param name="s">String to be removed from the collection.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.StringCollection.RemoveAt(System.Int32)">
<summary>
Removes a string from a given index in the collection.
</summary>
<param name="index">Index of the string to be removed.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.StringCollection.Clone">
<summary>
Creates a deep clone of the current Object.
</summary>
<returns>Returns a deep clone of the current Object.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.StringCollection.NameExists(System.String)">
<summary>
<see cref="M:ESRI.ArcGIS.ADF.ThreadSafeCollection.NameExists(System.String)"/>
</summary>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.StringCollection.IndexOf(System.String)">
<summary>
Searches for the specified string and returns the zero-based index of the first occurrence within the StringCollection.
</summary>
<param name="searchString">The string to locate. The value can be a null reference (Nothing in Visual Basic). </param>
<returns>The zero-based index of the first occurrence of value in the StringCollection, if found; otherwise, -1. </returns>
</member>
<member name="P:ESRI.ArcGIS.ADF.StringCollection.Item(System.Int32)">
<summary>
Gets a string from a given index in the collection.
</summary>
</member>
<member name="T:ESRI.ArcGIS.ADF.Resources.ResourceUtility">
<summary>
Resource.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.Resources.ResourceUtility.GetString(System.String,System.String,System.Type)">
<summary>
Retrieves a string contained in a resource file.
</summary>
<param name="baseName">The root name of the resources. For example, the root name for the resource file 'MyResource.en-us.resx' is 'MyResource'</param>
<param name="name">The name of the string to retrieve.</param>
<param name="type">A type from the assembly containing the resource file.</param>
<returns>The value of the string resource.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Resources.ResourceUtility.GetStringResource(System.String)">
<summary>
Get string resources
</summary>
<param name="name">Resource name</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.XmlHelper">
<summary>
The class supports the .NET ADF infrastructure and is not intended to be used directly from your code.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.#ctor">
<summary>
Default Ctor
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.SaveToFile(System.String)">
<summary>
Save the XML to a target file.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.ToString">
<summary>
Easy way to get the entire Xml string
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.LoadXML(System.String,ESRI.ArcGIS.ADF.LoadType)">
<summary>
Easy way to load XML from a file or URL
</summary>
<param name="loadType"></param>
<param name="sourceXMLOrFile"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetUrlContent(System.String)">
<summary>
Helper method to get string content from a URL - not necessarily XML, but probably
</summary>
<param name="sUrl">URL to retrieve</param>
<returns>String</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.MoveToRoot">
<summary>
Helper function if navigation is used to ensure we're at the root node.
</summary>
<returns>Boolean {True|False}</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetChildNodesFromCriteria(System.String)">
<summary>
Gets an ArrayList of XmlNode children using an xPath expression
</summary>
<param name="xPathExpression"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetFirstChildNodeFromCriteria(System.String)">
<summary>
Get first child node given an XPath expression
</summary>
<param name="xPathExpression"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetAttributeValue(System.Xml.XmlNode,System.String)">
<summary>
Get the Attribute value from a given XmlNode
</summary>
<param name="node"></param>
<param name="sAttributeName"></param>
<returns>String</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetAttributeInt32Value(System.Xml.XmlNode,System.String)">
<summary>
Get the Attribute int32 (int) value from a given XmlNode
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetAttributeFloatValue(System.Xml.XmlNode,System.String)">
<summary>
Get the Attribute floating point/Single value from a given XmlNode
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetAttributeDoubleValue(System.Xml.XmlNode,System.String)">
<summary>
Get the Attribute double value from a given XmlNode
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetAttributeBooleanValue(System.Xml.XmlNode,System.String)">
<summary>
Get the Attribute boolean value from a given XmlNode
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetElementValue(System.Xml.XmlNode)">
<summary>
Get the Element value from a given XmlNode
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetElementInt32Value(System.Xml.XmlNode)">
<summary>
Get the Element Int32 value from a given XmlNode
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetElementFloatValue(System.Xml.XmlNode)">
<summary>
Get the Element float/single floating point value from a given XmlNode
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetElementDoubleValue(System.Xml.XmlNode)">
<summary>
Get the Element Double value from a given XmlNode
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetElementBooleanValue(System.Xml.XmlNode)">
<summary>
Get the Element Boolean value from a given XmlNode
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetElementDateTimeValue(System.Xml.XmlNode)">
<summary>
Get the Element Boolean value from a given XmlNode
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetChildElementValue(System.Xml.XmlNode,System.String)">
<summary>
Get the first Child Element value from a given XmlNode
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetChildElementInt32Value(System.Xml.XmlNode,System.String)">
<summary>
Get the Child Element int32 value from a given XmlNode and ElementName
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetChildElementFloatValue(System.Xml.XmlNode,System.String)">
<summary>
Get the Child Element floating point/single value from a given XmlNode and ElementName
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetChildElementDoubleValue(System.Xml.XmlNode,System.String)">
<summary>
Get the Child Element double value from a given XmlNode and ElementName
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetChildElementBooleanValue(System.Xml.XmlNode,System.String)">
<summary>
Get the Child Element boolean value from a given XmlNode and ElementName
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetFirstChildXmlNodeFromRoot(System.String)">
<summary>
Returns the first XmlNode object matching this element name
<seealso cref="M:ESRI.ArcGIS.ADF.XmlHelper.GetFirstChildXmlNode(System.Xml.XmlNode,System.String)"/>
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetFirstChildXmlNode(System.Xml.XmlNode,System.String)">
<summary>
Returns the first XmlNode object matching this element name
NOTE: this doesn't seem to work if parent is Root. Use GetFirstChildXmlNodeFromRoot
<seealso cref="M:ESRI.ArcGIS.ADF.XmlHelper.GetFirstChildXmlNodeFromRoot(System.String)"/>
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetChildNodesFromRoot(System.String)">
<summary>
Returns an XmlNodeList of child nodes matching this element name
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GetRecursiveChildNodesFromParent(System.Xml.XmlNode,System.String)">
<summary>
Returns an ArrayList (boxed XmlNode objects) of child nodes matching this element name
This function is recursive in that it will find ALL the children, even if their in
sub folders (sub child nodes)
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.CreateNodeElement(System.Xml.XmlNode,System.String,System.String)">
<summary>
Create an Element under the given parent based on the name and value pair.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.CreateComment(System.Xml.XmlNode,System.String)">
<summary>
Creates and adds a comment before the given node. If root node, or null,
the comment node is Appended to the tree.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.CreateXmlDeclaration(System.String,System.String,System.String)">
<summary>
Used to create an Xml declaration
</summary>
<param name="version">version as defined by the Xml Specification</param>
<param name="encoding">default encoding to use for the document as defined by the Xml Spec</param>
<param name="standalone">To be stand-alone, or Not</param>
<returns>XmlNode</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.DeleteNodeElement(System.Xml.XmlNode)">
<summary>
Delete an XmlNode from the tree
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.ModifyNodeElementValue(System.Xml.XmlNode,System.String)">
<summary>
Modify an XmlNode elment with a new value.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.CreateNodeAttribute(System.Xml.XmlElement,System.String,System.String)">
<summary>
Create a new attribute given an XmlElement (XmlNode) target
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.DeleteNodeAttribute(System.Xml.XmlNode,System.String)">
<summary>
Delete an attribute from the given target node.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GenerateSchema(System.String)">
<summary>
GenerateSchema a schema file from a given target file
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.GenerateSchemaAsString">
<summary>
GenerateSchemaAsString based on the currently loaded Xml
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.ModifyNodeAttributeValue(System.Xml.XmlNode,System.String,System.String)">
<summary>
Modify an attribute value to a new value
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.Encode(System.String)">
<summary>
Internal method used to ensure that HTML and XML tags are encoded within their values
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.Decode(System.String)">
<summary>
Internal method used to ensure that HTML and XML tags are decoded for display in other systems
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.XmlHelper.HandleException(System.Exception)">
<summary>
Internal method used to process errors and exception handling
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.XmlHelper.LastErrorMessage">
<summary>
Return the last error message generated
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.XmlHelper.RootNode">
<summary>
Get the Root node of the Xml Document as an XmlNode
<seealso cref="T:System.Xml.XmlNode"/>
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.XmlHelper.Document">
<summary>
Get an XmlDocument
<seealso cref="T:System.Xml.XmlDocument"/>
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.XmlHelper.Navigator">
<summary>
Get the XPathNavigator
<seealso cref="T:System.Xml.XPath.XPathNavigator"/>
</summary>
</member>
<member name="T:ESRI.ArcGIS.ADF.XmlHelper.Save">
<summary>
delegates - more complex save operations can do it themselves...
</summary>
</member>
<member name="T:ESRI.ArcGIS.ADF.LoadType">
<summary>
<strong>The class supports the .NET ADF infrastructure and is not intended to be used directly from your code.</strong>
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.LoadType.FromString">
<summary>
Load the XML Document from a string resource
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.LoadType.FromLocalFile">
<summary>
Load the Xml Document from a file resource
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.LoadType.FromUrl">
<summary>
Load the Xml Document from a Url Resource
</summary>
</member>
<member name="T:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand">
<summary>
An abstract class designed to provide an efficient way to create new custom
command items. Inherit BaseCommand to create a new custom command.
</summary>
<remarks>Note to inheritors: You must override the OnCreate method; generally
in this method you should store a reference to the command host which is passed
as a parameter to this method. Override the OnClick method and add the code
which performs the main actions of your custom command class.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_bitmap">
<summary>
The bitmap that is used as the icon on this command, returned by the ICommand::Bitmap property.
Null by default.
</summary>
<remarks>
Note to inheritors: Set this field to the icon you wish to be used as the icon for the command.
This value will be converted to an OLE picture handle
the first time that the ICommand::Bitmap property is accessed. This handle is
cleared from memory in the class destructor. Use the <see cref="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.UpdateBitmap(System.Drawing.Bitmap)"/> method to update this value once set.
</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_caption">
<summary>
The caption of this command, returned by the ICommand::Caption property.
Null by default.
</summary>
<remarks>
Note to inheritors: Set this field to a value you wish to be used as the caption for the command.
</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_category">
<summary>
The name of the category with which the command is associated, returned by the ICommand::Category property.
Null by default.
</summary>
<remarks>
Note to inheritors: Set this field to a value you wish to be used as the command category for the command.
</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_helpFile">
<summary>
The name of the helpfile associated with this command, returned by the ICommand::Helpfile property.
Null by default.
</summary>
<remarks>
Note to inheritors: Set this field to the name of the helpfile that you wish to be used for the command.
</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_helpID">
<summary>
The help context ID associated with this command, used to specify the mapped numeric value of the topic ID of the context sensitive help topic for the command.
Null by default.
</summary>
<remarks>
Note to inheritors: Set this field to the id of the help topic you wish to be used for the command. The help id should be a valid
id from the helpfile you specify in the m_helpFile field.
</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_message">
<summary>
The statusbar message for this command, returned by the ICommand::Message property.
Null by default.
</summary>
<remarks>
Note to inheritors: Set this field to a value you wish to be used as the message for the command.
</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_name">
<summary>
A string used for identification of this command, returned by the ICommand::Name property.
Null by default.
</summary>
<remarks>
Note to inheritors: Set this field to a value you wish to be used as the name for the command.
</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_toolTip">
<summary>
The tooltip for this command, returned from the ICommand::Tooltip property.
Null by default.
</summary>
<remarks>
Note to inheritors: Set this field to a value you wish to be used as the tooltip for the command.
</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_enabled">
<summary>
The state of this command, returned from the ICommand::Enabled property.
True by default.
</summary>
<remarks>
Note to inheritors: Set this field to True to enable your command, or False to disable it.
</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_checked">
<summary>
The checked state of this command, returned from the ICommand::Checked property.
False by default.
</summary>
<remarks>
Note to inheritors: Set this field to True to show the command with a check mark next to it, or to False to show no check mark.
</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.#ctor">
<overloads>The constructor has two overloads.</overloads>
<summary>
Default constructor. Initializes a new BaseCommand object with default values.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.#ctor(System.Drawing.Bitmap,System.String,System.String,System.Int32,System.String,System.String,System.String,System.String)">
<summary>
Initializes a new BaseCommand object from the specified bitmap, caption, category, help context ID, helpfile name, message, name, and tooltip.
</summary>
<param name="bitmap">System.Drawing.Bitmap. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_bitmap"/></param>
<param name="caption">Caption of the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_caption"/></param>
<param name="category">Category of the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_category"/></param>
<param name="helpContextId">Help context ID for the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_helpID"/></param>
<param name="helpFile">Helpfile name for the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_helpFile"/></param>
<param name="message">Message of the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_message"/></param>
<param name="name">Name of the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_name"/></param>
<param name="toolTip">Tooltip of the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_toolTip"/></param>
<remarks>
Note to inheritors: Use this constructor to set up the values of the command.
</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.Finalize">
<summary>
Destructor. Cleans up GDI resources used by the BaseCommand.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.UpdateBitmap(System.Drawing.Bitmap)">
<summary>Changes the Bitmap for the command. Call this method to update the
icon used for the command at runtime, after the command has already been
instantiated.</summary>
<param name="bitmap">A 16 by 16 Bitmap to represent the
command. The color of the upper left pixel of the bitmap
will be treated as the transparent color. This bitmap will replace any
existing bitmap for the command.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.OnClick">
<summary>
Called when the user clicks a command.
</summary>
<remarks>
Note to inheritors: override OnClick and use this method to
perform the actual work of the custom command.
</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.OnCreate(System.Object)">
<summary>
Called when the command is created inside the application.
</summary>
<param name="hook">A reference to the application in which the command was created.
The hook may be an IApplication reference (for commands created in ArcGIS Desktop applications)
or an IHookHelper reference (for commands created on an Engine ToolbarControl).</param>
<remarks>Note to inheritors: classes inheriting from BaseCommand must always
override the OnCreate method. Use this method to store a reference to the host
application, passed in via the hook parameter.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.Message">
<summary>
The statusbar message for this command, appears in the application status bar when the mouse passes
over the command.
</summary>
<remarks>Note to inheritors: By default, the <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_message"/> field is returned from this member.
It is possible to override this member, if you should need to provide a different implementation.
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.Bitmap">
<summary>
Gets the bitmap that is used as the icon on this command, shown when the command is placed on a toolbar in Icon mode.
</summary>
<remarks>Note to inheritors: By default, the bitmap stored in the <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_bitmap"/> field is converted to a handle, and then
returned from this member.
It is possible to override this member, if you should need to provide a different implementation.
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.Caption">
<summary>
The caption of this command, shown when the command is placed on a toolbar in Caption mode.
</summary>
<remarks>Note to inheritors: By default, the <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_caption"/> field is returned from this member.
It is possible to override this member, if you should need to provide a different implementation.
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.Tooltip">
<summary>
The tooltip for this command, appears in the screen tip when the mouse hovers over the command.
</summary>
<remarks>Note to inheritors: By default, the <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_toolTip"/> field is returned from this member.
It is possible to override this member, if you should need to provide a different implementation.
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.HelpContextID">
<summary>
The statusbar message for this command, appears in the application status bar when the mouse passes over the command.
</summary>
<remarks>Note to inheritors: By default, the <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_helpID"/> field is returned from this member.
It is possible to override this member, if you should need to provide a different implementation.
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.Name">
<summary>
A string used for programmatic identification of this command.
</summary>
<remarks>Note to inheritors: By default, the <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_name"/> field is returned from this member.
It is possible to override this member, if you should need to provide a different implementation.
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.Checked">
<summary>
Indicates whether or not this command is checked.
</summary>
<remarks>Note to inheritors: By default, the <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_checked"/> field is returned from this member.
It is possible to override this member, if you should need to provide a different implementation.
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.Enabled">
<summary>
The enabled state of this command, determines whether the command is usable.
</summary>
<remarks>Note to inheritors: By default, the <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_enabled"/> field is returned from this member.
It is possible to override this member, if you should need to provide a different implementation.
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.HelpFile">
<summary>
The name of the helpfile associated with this command.
Used to specify the name of the help file that contains the context sensitive help topic for the command.
</summary>
<remarks>Note to inheritors: By default, the <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_helpFile"/> field is returned
from this member.
It is possible to override this member, if you should need to provide a different implementation.
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.Category">
<summary>
The name of the category with which the command is associated, used by the Customize dialog box.
</summary>
<remarks>Note to inheritors: By default, the <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_category"/> field is returned from this
member. If no category has been set by the inhertiting class, the value 'Misc.' will be returned.
It is possible to override this member, if you should need to provide a different implementation.
</remarks>
</member>
<member name="T:ESRI.ArcGIS.ADF.ProxyServerConfiguration">
<summary>
Encapsulates a Proxy Server Configuration
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.ProxyServerConfiguration.IsBypassed(System.Uri)">
<summary>
Checks if an given URI is bypassed by the proxy server or not
</summary>
<param name="uri">Uniform Resource Identifier</param>
<returns>true if the given URI is bypasses the proxy server. False otherwise.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.ProxyServerConfiguration.#ctor">
<summary>
Constructor
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.ProxyServerConfiguration.SaveConfiguration">
<summary>
Saves the proxy server configuration to file on disk
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.ProxyServerConfiguration.GetSchema">
<summary>
Returns the Schema for the XML representation of the object.
</summary>
<returns>null</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.ProxyServerConfiguration.ReadXml(System.Xml.XmlReader)">
<summary>
Generates the object from its XML representation.
</summary>
<param name="reader">Xml Reader stream from which it is deserialized</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.ProxyServerConfiguration.WriteXml(System.Xml.XmlWriter)">
<summary>
Converts the object to its XML representation.
</summary>
<param name="writer">Xml Writer stream from which it is deserialized</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.ProxyServerConfiguration.ApplySettings(System.Net.WebRequest)">
<summary>
Applies Proxy Settings (from ProxyServer.config) configuration to the webRequest
</summary>
<param name="request"></param>
</member>
<member name="P:ESRI.ArcGIS.ADF.ProxyServerConfiguration.Enabled">
<summary>
Whether proxy server redirection is enabled or not.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.ProxyServerConfiguration.ProxyServerUri">
<summary>
Uri of the Proxy server. Eg:- http://10.48.57.32:8080
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.ProxyServerConfiguration.ProxyRequiresAuthentication">
<summary>
Whether the proxy server requires authentication or not
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.ProxyServerConfiguration.ProxyServerCredentials">
<summary>
Credentials to use for the proxy server authentications
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.ProxyServerConfiguration.BypassProxyOnLocal">
<summary>
Whether to bypass the proxy on local connections
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.ProxyServerConfiguration.BypassAddressList">
<summary>
Semicolon seperated list of addresses to bypass the proxy server
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.ProxyServerConfiguration.Instance">
<summary>
Singleton instance of the proxy server configuration
</summary>
</member>
<member name="T:ESRI.ArcGIS.ADF.IISHelper">
<summary>
This is a utility class that contains a collection of function to interact with
Internet Information Server, for example, to create and remove web applications.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.#ctor">
<summary>
Initializes a new instance of the IISHelper Class
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.CheckServerForAccess(System.String,System.String,System.String,System.String@,System.String@,System.String@)">
<summary>
Check IIS Server for access permissions
</summary>
<param name="iisPath">The Active Directory path of the virtual directory. Use GetIISLocation method to get the path.</param>
<param name="server">The name of the server.</param>
<param name="url">The url.</param>
<param name="physicalPath">The output physical path.</param>
<param name="filePath">The UNC path for the physical path.</param>
<param name="status">The output status message.</param>
<returns>true if check server for access succeeds; false if not.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.GetPhysicalPath(System.String,System.String@,System.String@)">
<summary>
Get the physical path of a virtual directory.
</summary>
<param name="iisPath">The Active Directory path of the virtual directory. Use GetIISLocation method to get the path.</param>
<param name="physicalPath">The output physical path.</param>
<param name="status">The output status message.</param>
<returns>true if getting physical path succeeds, false if not.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.GetPhysicalIISRootDirectory(System.String)">
<summary>
Get the root directory of the IIS Server specified
</summary>
<param name="server">IIS Server machine name</param>
<returns>Root of the IIS server specified (e.g. c:\Inetpub\wwwroot)</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.CreateApplicationFromVirtualDirectory(System.DirectoryServices.DirectoryEntry)">
<summary>
Turn a virtual directory into an application.
</summary>
<param name="vdir">The DirectoryEntry class for the virtual directory.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.IsVirtualDirectoryAnApplication(System.DirectoryServices.DirectoryEntry)">
<summary>
Check if a virtual directory is an application
</summary>
<param name="vdir">The DirectoryEntry class for the virtual directory.</param>
<returns>true if it is an application, false if not.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.VirtualDirectoryExists(System.String,System.String,System.String@)">
<summary>
Check if a virtual directory exists.
</summary>
<param name="iisLocation">The Active Directory path of the IIS website. Use GetIISLocation method to get the path.</param>
<param name="virtualDirectoryName">The name of the virtual directory.</param>
<param name="status">The output status message.</param>
<returns>true if the virtual directory exists, false if not.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.IsIISAvailable(System.String)">
<summary>
Check if the IIS server is available.
</summary>
<param name="server">The name of the server.</param>
<returns>true if the server is available, false if not.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.IsIISAvailable(System.String,System.String)">
<summary>
Check if the IIS server is available and running on a specified port
</summary>
<param name="server">Name of the server machine, for example, MyServer.</param>
<param name="port">Port in the format ":PortNumber:", for example, ":80:".</param>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.GetIISLocation(System.String,System.String,System.String@)">
<summary>
Get the Active Directory path for the server and the port
</summary>
<param name="server">Name of the server machine, for example, MyServer.</param>
<param name="port">Port in the format ":PortNumber:", for example, ":80:".</param>
<param name="status">The output status message.</param>
<returns>Active Directory Path, for example, "IIS://MyServer/W3SVC/1/ROOT".</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.GetSiteIdentifier(System.String,System.String,System.String@)">
<summary>
Gets the Identifier used for the website. Useful for servers with multiple websites. This routine does not return the
Site number.
</summary>
<param name="server">Name of the server machine, for example, MyServer</param>
<param name="port">Port in the format ":PortNumber:", for example, ":80:"</param>
<param name="status">The output status message</param>
<returns>A string identifier based on ServerComment property in Metabase.xml (Eg:- Default Web Site)</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.GetSiteIdentifierNumber(System.String,System.String,System.String@)">
<summary>
Gets the Identifier (site number) used for the website. Useful for servers with multiple websites.
</summary>
<param name="server">Name of the server machine, for example, MyServer</param>
<param name="port">Port in the format ":PortNumber:", for example, ":80:"</param>
<param name="status">The output status message</param>
<returns>A string identifier based on Name property in ActiveDirectory entry (Eg:- 1)</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.IsWebSiteUp(System.String,System.String@)">
<summary>
Verify if a website is up.
</summary>
<param name="iisLocation">The Active Directory path of the IIS website. Use GetIISLocation method to get the path.</param>
<param name="status">The output status message.</param>
<returns>true if the web site is up, false if not.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.CreateVirtualDirectory(System.String,System.String,System.String@)">
<summary>
Create a web application with the virtual directory name. The virtual directory is physically under the root of the web site.
</summary>
<param name="iisLocation">The Active Directory path of the IIS website. Use GetIISLocation method to get the path.</param>
<param name="virtualDirectoryName">The name of the virtual directory.</param>
<param name="status">The output status message.</param>
<returns>true if vdir creation succeeds, false if not</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.CreateVirtualDirectory(System.String,System.String,System.String,System.String@)">
<summary>
Create a web application with the virtual directory name. The physical path of the virtual directory is passed in as a parameter.
</summary>
<param name="iisLocation">The Active Directory path of the IIS website. Use GetIISLocation method to get the path.</param>
<param name="virtualDirectoryName">The name of the virtual directory.</param>
<param name="physicalPath">The physical path.</param>
<param name="status">The output status message.</param>
<returns>true if vdir creation succeeds, false if not</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.DeleteVirtualDirectory(System.String,System.String,System.String@)">
<summary>
Delete a virtual directory
</summary>
<param name="iisLocation">The Active Directory path of the IIS website. Use GetIISLocation method to get the path.</param>
<param name="virtualDirectoryName">The name of the virtual directory.</param>
<param name="status">The output status message.</param>
<returns>true if vdir deletion succeeds, false if not</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.RenameVirtualDirectory(System.String,System.String,System.String,System.String@)">
<summary>
Rename a virtual directory.
</summary>
<param name="iisLocation">The Active Directory path of the IIS website. Use GetIISLocation method to get the path.</param>
<param name="oldDirectoryName">The old virtual directory name.</param>
<param name="newDirectoryName">The new virtual directory name.</param>
<param name="status">The output status message.</param>
<returns>true if vdir rename succeeds, false if not</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.ChangePhysicalPathOfVirtualDirectory(System.String,System.String,System.String,System.String@)">
<summary>
Change the physical path of a virtual directory.
</summary>
<param name="iisLocation">The Active Directory path of the IIS website. Use GetIISLocation method to get the path.</param>
<param name="virtualDirectoryName">The name of the virtual directory.</param>
<param name="newPhysicalPath">The new physical path.</param>
<param name="status">The output status message.</param>
<returns>true if vdir rename succeeds, false if not.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.SetSingleProperty(System.String,System.String,System.String,System.Object,System.String@)">
<summary>
Set a single propery of the virtual directory.
</summary>
<param name="iisLocation">The Active Directory path of the IIS website. Use GetIISLocation method to get the path.</param>
<param name="virtualDirectoryName">The name of the virtual directory.</param>
<param name="propertyName">The property name.</param>
<param name="newValue">The new value of the property.</param>
<param name="status">The output status message.</param>
<returns>true if setting property value succeeds, false if not.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.GetIISVirtualDirectories(System.String)">
<summary>
Retrieves the list of virtual directories from the default website on IIS
</summary>
<param name="server">Hostname of the IIS server</param>
<returns>list of virtual directories from the default website on IIS</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.GetIISVirtualDirectories(System.String,System.String)">
<summary>
Retrieves the list of virtual directories from an IIS Website
</summary>
<param name="server">Hostname of the IIS server</param>
<param name="webSiteID">Web virtual servers are identified in the metabase by their index numbers. The first Web server is number 1, the second is number 2, and so on.</param>
<returns>list of virtual directories from an IIS Website in the form of IIsVirtualDirectoryInfo objects</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.GetNestedVirtualDirectoriesForWebDirectory(System.Collections.Generic.List{ESRI.ArcGIS.ADF.IIsVirtualDirectoryInfo},System.DirectoryServices.DirectoryEntry,System.String,System.String)">
<summary>
Recursive helper routine to look within IIsWebDirectories
</summary>
<param name="virtualDirs">List of virtual directory objects to append to.</param>
<param name="objChildDE">The current Directory entry to look under.</param>
<param name="webSiteMetabasePath">ADSI path for the website that houses the v-dir</param>
<param name="webSitePhysicalDirectory">UNC path for the website that houses the v-dir</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.GetIISApplicationDirectories(System.String,System.String)">
<summary>
Retrieves the list of application directories from an IIS Website
</summary>
<param name="server">Hostname of the IIS server</param>
<param name="webSiteID">Web virtual servers are identified in the metabase by their index numbers. The first Web server is number 1, the second is number 2, and so on.</param>
<returns>list of application directories from an IIS Website in the form of IIsVirtualDirectoryInfo objects</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.GetNestedApplicationDirectoriesForWebDirectory(System.Collections.Generic.List{ESRI.ArcGIS.ADF.IIsVirtualDirectoryInfo},System.DirectoryServices.DirectoryEntry,System.String,System.String)">
<summary>
Recursive helper routine to look within IIsWebDirectories
</summary>
<param name="applicationDirs">List of application directory objects to append to.</param>
<param name="objChildDE">The current Directory entry to look under.</param>
<param name="webSiteMetabasePath">ADSI path for the website that houses the app-dir</param>
<param name="webSitePhysicalDirectory">UNC path for the website that houses the app-dir</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.IISHelper.GetWebsitesOnIISServer(System.String)">
<summary>
Gets a list of websites on an IIS Server
</summary>
<param name="server">A list of IISWebsite information objects</param>
<returns>list of websites on an IIS Server in the form of IIsWebsiteInfo objects</returns>
</member>
<member name="T:ESRI.ArcGIS.ADF.IIsWebsiteInfo">
<summary>
Holds information about websites
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.IIsWebsiteInfo.WebsiteID">
<summary>
The unique identifier used by IIS to identify the website.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.IIsWebsiteInfo.FriendlyName">
<summary>
The friendly name for the website.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.IIsWebsiteInfo.Ports">
<summary>
List of port numbers to which the website is bound to. Each port value is of the form :portNum: (eg:- :80: :121:).
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.IIsWebsiteInfo.UsingSSL">
<summary>
Is the website bound using SSL.
</summary>
</member>
<member name="T:ESRI.ArcGIS.ADF.IIsVirtualDirectoryInfo">
<summary>
Contains information about a virtual directory in IIS
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.IIsVirtualDirectoryInfo.VirtualPath">
<summary>
Virtual path of the virtual directory.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.IIsVirtualDirectoryInfo.ADSIPath">
<summary>
The Active Directory path to the virtual directory.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.IIsVirtualDirectoryInfo.PhysicalPath">
<summary>
The UNC (or local) path to the virtual directory.
</summary>
</member>
<member name="T:ESRI.ArcGIS.ADF.BaseClasses.BaseToolbar">
<summary>
An abstract class designed to provide an efficient and script-like way
to create new custom toolbar.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseToolbar.GetItemInfo(System.Int32,ESRI.ArcGIS.SystemUI.IItemDef)">
<summary>
IToolbarDef.GetItemInfo() implementation. Called by the framework to
find out the command item by position.
</summary>
<param name="pos">Locational index of the item on the toolbar.</param>
<param name="itemDef">Item definition</param>
<remarks>Note to inheritors: You do not need to call this method.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseToolbar.Name">
<summary>
Name to uniquely identify this toolbar, returned from IToolbarDef.Name property.
Null by default.
</summary>
<remarks>Note to inheritors: You can either override this property
or set the base.m_barID field directly.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseToolbar.Caption">
<summary>
Caption of this toolbar, returned from IToolbarDef.Caption property.
Null by default.
</summary>
<remarks>Note to inheritors: You can either override this property
or set the base.m_barCaption field directly.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseToolbar.ItemCount">
<summary>
IToolbarDef.ItemCount property implementation. Called by the framework to
get the number of command items on the toolbar.
</summary>
<remarks>Note to inheritors: You do not need to use this property.</remarks>
</member>
<member name="T:ESRI.ArcGIS.ADF.COMSupport.OLE">
<summary>
The OLE class defines methods to help you convert existing .NET Font, Bitmap
or Icon classes into stdole Font or Picture objects to use in in
ArcGIS members.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.COMSupport.OLE.#ctor">
<summary>
Default Constructor.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.COMSupport.OLE.GetIPictureDispFromIcon(System.Drawing.Icon)">
<summary>
The GetIPictureDispFromIcon method can be used to convert an existing
.NET System.Drawing.Icon object into a Stdole.StdPicture object.
</summary>
<param name="icon">A <see cref="T:System.Drawing.Icon"/> object.</param>
<returns>A stdole.StdPicture object.</returns>
<example>
<div><span class="lang">[C#]</span>
<code>
System.Drawing.Icon dotNetIcon = new System.Drawing.Icon(@"C:\Temp\MyIcon.ico");
ESRI.ArcGIS.MapControl.IMapControlDefault map = this.axMapControl1.Object as ESRI.ArcGIS.MapControl.IMapControlDefault;
map.MouseIcon = ESRI.ArcGIS.Utility.COMSupport.OLE.GetIPictureDispFromIcon(dotNetIcon) as stdole.IPictureDisp;
map.MousePointer = ESRI.ArcGIS.SystemUI.esriControlsMousePointer.esriPointerCustom;</code>
</div>
<div><span class="lang">[Visual Basic .NET]</span>
<code>
Dim dotNetIcon As System.Drawing.Icon = New System.Drawing.Icon("C:\Temp\MyIcon.ico")
Dim map As ESRI.ArcGIS.MapControl.IMapControlDefault = Me.AxMapControl1.Object
map.MouseIcon = ESRI.ArcGIS.Utility.COMSupport.OLE.GetIPictureDispFromIcon(dotNetIcon)
map.MousePointer = ESRI.ArcGIS.SystemUI.esriControlsMousePointer.esriPointerCustom</code>
</div>
</example>
</member>
<member name="M:ESRI.ArcGIS.ADF.COMSupport.OLE.GetIPictureDispFromBitmap(System.Drawing.Bitmap)">
<summary>
The GetIPictureDispFromBitmap method can be used to convert an existing
.NET System.Drawing.Bitmap object into a Stdole.StdPicture object.
</summary>
<param name="bitmap">A <see cref="T:System.Drawing.Bitmap"/> object.</param>
<returns>A stdole.StdPicture object.</returns>
<example>
<div><span class="lang">[C#]</span>
<code>
System.Drawing.Bitmap dotNetBmp = new System.Drawing.Bitmap(@"C:\Temp\MyBitmap.bmp");
ESRI.ArcGIS.Display.IPictureMarkerSymbol bmpSym = new ESRI.ArcGIS.Display.PictureMarkerSymbolClass() as ESRI.ArcGIS.Display.IPictureMarkerSymbol;
bmpSym.Picture = ESRI.ArcGIS.Utility.COMSupport.OLE.GetIPictureDispFromBitmap(dotNetBmp) as stdole.IPictureDisp;</code>
</div>
<div><span class="lang">[Visual Basic .NET]</span>
<code>
Dim dotNetBmp As System.Drawing.Bitmap = New System.Drawing.Bitmap("C:\Temp\MyBitmap.bmp")
Dim bmpSym As ESRI.ArcGIS.Display.IPictureMarkerSymbol = New ESRI.ArcGIS.Display.PictureMarkerSymbol
bmpSym.Picture = ESRI.ArcGIS.Utility.COMSupport.OLE.GetIPictureDispFromBitmap(dotNetBmp)</code>
</div>
</example>
</member>
<member name="M:ESRI.ArcGIS.ADF.COMSupport.OLE.GetIFontDispFromFont(System.Drawing.Font)">
<summary>
The GetIFontDispFromFont method can be used to convert an existing
.NET System.Drawing.Font object into a Stdole.StdFont object.
</summary>
<param name="font">A <see cref="T:System.Drawing.Font"/> object.</param>
<returns>A stdole.StdFont object.</returns>
<example>
<div><span class="lang">[C#]</span>
<code>
System.Drawing.Font dotNetFont = new System.Drawing.Font("Castellar", 25.0F);
ESRI.ArcGIS.Display.ITextSymbol textSym = new ESRI.ArcGIS.Display.TextSymbolClass() as ESRI.ArcGIS.Display.ITextSymbol;
textSym.Font = ESRI.ArcGIS.Utility.COMSupport.OLE.GetIFontDispFromFont(dotNetFont) as stdole.IFontDisp;</code>
</div>
<div><span class="lang">[Visual Basic .NET]</span>
<code>
Dim dotNetFont As New System.Drawing.Font("Castellar", 25.0F)
Dim textSym As ESRI.ArcGIS.Display.ITextSymbol = New ESRI.ArcGIS.Display.TextSymbolClass
textSym.Font = ESRI.ArcGIS.Utility.COMSupport.OLE.GetIFontDispFromFont(dotNetFont)</code>
</div>
</example>
</member>
<member name="T:ESRI.ArcGIS.ADF.ImpersonationException">
<summary>
An Exception that describes the error that occurs during impersonation
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.ImpersonationException.#ctor">
<summary>
Default Constructor used to create an instance of the exception.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.ImpersonationException.#ctor(System.String)">
<summary>
Used to create an instance of this exception with the message provided.
</summary>
<param name="message">Message used in describing the exception</param>
</member>
<member name="P:ESRI.ArcGIS.ADF.ImpersonationException.Message">
<summary>
Description of the exception.
</summary>
</member>
<member name="T:ESRI.ArcGIS.ADF.Converter">
<summary>
Converts a ArcGIS COM data types to .NET data types and vice versa.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.FromRGBColor(ESRI.ArcGIS.Display.IRgbColor)">
<summary>
Converts IRGBColor to a System.Drawing.Color structure
</summary>
<param name="rgbColor"></param>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.ToRGBColor(System.Drawing.Color)">
<summary>
Converts from System.Drawing.Color structure to an ESRI.ArcGIS.Dispay.IRgbColor
</summary>
<param name="color"><see cref="T:System.Drawing.Color"/></param>
<returns><see cref="T:ESRI.ArcGIS.Display.IRgbColor"/></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.ToRGBColor(ESRI.ArcGIS.Server.IServerContext,System.Drawing.Color)">
<summary>
Converts from System.Drawing.Color object to a ESRI.ArcGIS.Dispay.IRgbColor
Used with ArcGIS Server Context
</summary>
<param name="context">The Server Context to create the IRgbColor object in</param>
<param name="color"><see cref="T:System.Drawing.Color"/></param>
<returns><see cref="T:ESRI.ArcGIS.Display.IRgbColor"/></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.ToStdFont(System.Drawing.Font)">
<summary>
Converts a System.Drawing.Font object to an stdole.IFontDisp
object for use with ArcObjects Symbols.
</summary>
<param name="font">a System.Drawing.Font object<seealso cref="T:System.Drawing.Font"/></param>
<returns>The IFontDisp object.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.ToStdFont(ESRI.ArcGIS.Server.IServerContext,System.Drawing.Font)">
<summary>
Converts a System.Drawing.Font object to an stdole.IFontDisp
object for use with ArcObjects Symbols.
</summary>
<param name="context">An IServerContext object</param>
<param name="font">a System.Drawing.Font object<seealso cref="T:System.Drawing.Font"/></param>
<returns>The IFontDisp object.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.CopyToServerContext(System.Object,ESRI.ArcGIS.Server.IServerContext,ESRI.ArcGIS.Server.IServerContext)">
<summary>
Copy object from one server context to another.
</summary>
<param name="o">Object to copy.</param>
<param name="from">ServerContext to copy from.</param>
<param name="to">ServerContext to copy to.</param>
<returns>Copied object.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.ToByteArray(System.Drawing.Image,System.Drawing.Imaging.ImageFormat)">
<summary>
Converts a System.Drawing.Image to an array of bytes
</summary>
<param name="img"><see cref="T:System.Drawing.Image"/></param>
<param name="format">Format that you would like the image to be when transformed to bytes</param>
<returns>An array of bytes</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.ToImage(System.Uri)">
<summary>
Retrieve an Image Url from the supplied Uri
</summary>
<param name="imageUri">A valid System.Uri object<see cref="T:System.Uri"/></param>
<returns><see cref="T:System.Drawing.Bitmap"/></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.ToImage(System.String)">
<summary>
Retrieve an Image from the string Url
</summary>
<param name="imageUrl">A valid Url of the Image Location to retrieve</param>
<returns><see cref="T:System.Drawing.Bitmap"/></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.ToImage(System.String,ESRI.ArcGIS.ADF.Identity,System.Net.WebException@)">
<summary>
Retrieve an Image from the string Url
</summary>
<param name="url">A valid Url of the Image Location to retrieve</param>
<param name="exception">Any exception that is thrown while trying to read file.</param>
<param name="identity">Identity used to authenticate with server</param>
<returns><see cref="T:System.Drawing.Bitmap"/></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.ToImage(System.IO.Stream)">
<summary>
Retrieve an Image from the Stream
<seealso cref="T:System.IO.Stream"/>
</summary>
<param name="stream"><see cref="T:System.IO.Stream"/></param>
<returns><see cref="T:System.Drawing.Bitmap"/></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.ToImage(System.Byte[])">
<summary>
Retrieve an Image from the supplied bytes
</summary>
<param name="base64EncodedBytes">The base64 encoded representation of the Image to create</param>
<returns><see cref="T:System.Drawing.Bitmap"/></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.ToIdentity(System.String)">
<summary>
Returns a valid Identity type from the Impersonation control Identity encrypted property
</summary>
<param name="login">An encrypted string fromthe Impersonation WebControl Identity property.</param>
<returns>The Identity object with attributes from the passed-in string.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.ToESRIEncryptedIdentity(System.String)">
<summary>
Returns a valid Identity type from the Impersonation control orginal ADF Identity encrypted property
</summary>
<param name="login">An encrypted string from the Impersonation WebControl Identity property.</param>
<returns>The Identity object with attributes from the passed-in string.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.FromIdentity(ESRI.ArcGIS.ADF.Identity)">
<summary>
Returns an encrypted string value that can be used with the Impersonation
WebControl.
</summary>
<param name="identity">An encrypted String for impersonation representing the identity of a valid user</param>
<returns>An encrypted string value represetning the Identity object</returns>
</member>
<member name="F:ESRI.ArcGIS.ADF.Converter.ADFCrypto.SecurityKey">
<summary>Encryption security seed key.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.ADFCrypto.MD5Encrypt(System.String)">
<summary>
Encrpyt string using MD5 hash encryption.
</summary>
<returns>Encrypted string.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.Converter.ADFCrypto.MD5Decrypt(System.String)">
<summary>
Decrpyt MD5 Hashed encryption string.
</summary>
<returns>decrypted string.</returns>
</member>
<member name="T:ESRI.ArcGIS.ADF.BaseClasses.BaseTool">
<summary>
An abstract class designed to provide an efficient way to create new
tool classes for ArcGIS. Inherit BaseTool to create a new custom tool.
This class derives from the BaseCommand class.
</summary>
<remarks>Note to inheritors: You must override the OnCreate method, inherited
from BaseCommand. Generally you will also override the OnMouseDown, OnMouseMove
and/or OnMouseUp methods of the BaseTool and in those members perform the main
actions of your custom tool class.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.m_cursor">
<summary>
A System.Windows.Forms.Cursor that is used for this tool, the handle of which
is returned by the ITool::Cursor property.
Null by default, indicating the default cursor will be used.
</summary>
<remarks>
Note to inheritors: Change the m_cursor field to show a different cursor for
your tool's mouse pointer. For example, if you a coding a tool which allows a
user to track a rectangle, you may want to change the cursor whilst the mouse
button is depressed to indicate the change of state to the user.
</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.m_deactivate">
<summary>
Indicates whether or not the Tool is deactivated, returned from the ITool::Deactivate method.
True by default.
</summary>
<remarks>Note to inheritors: Set this field to indicate if the tool can be interrupted by other tools.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.#ctor">
<overloads>The constructor has two overloads.</overloads>
<summary>
Default Constructor. Initializes a new BaseTool object with default values.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.#ctor(System.Drawing.Bitmap,System.String,System.String,System.Windows.Forms.Cursor,System.Int32,System.String,System.String,System.String,System.String)">
<summary>
Initializes a new BaseTool object from the specified bitmap, caption, category, cursor, help context ID, helpfile name, message, name, and tooltip.
</summary>
<param name="bitmap">System.Drawing.Bitmap for the tool icon. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_bitmap"/></param>
<param name="caption">Caption of the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_caption"/></param>
<param name="category">Category of the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_category"/></param>
<param name="cursor">System.Windows.Forms.Cursor for the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.m_cursor"/></param>
<param name="helpContextId">Help context ID for the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_helpID"/></param>
<param name="helpFile">Helpfile name for the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_helpFile"/></param>
<param name="message">Message of the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_message"/></param>
<param name="name">Name of the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_name"/></param>
<param name="toolTip">Tooltip of the tool. <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCommand.m_toolTip"/></param>
<remarks>
Note to inheritors: Use this constructor to set up the values of the tool.
</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.OnMouseDown(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
This method is called when a mouse button is pressed down, when this tool is active.
</summary>
<param name="Button">Specifies which mouse button is pressed; 1 for the left mouse button, 2 for the right mouse button, and 4 for the middle mouse button.</param>
<param name="Shift">Specifies an integer corresponding to the state of the SHIFT (bit 0), CTRL (bit 1) and ALT (bit 2) keys. When none, some, or all of these keys are pressed none, some, or all the bits get set. These bits correspond to the values 1, 2, and 4, respectively. For example, if both SHIFT and ALT were pressed, Shift would be 5.</param>
<param name="X">The X coordinate, in device units, of the location of the mouse event. See the OnMouseDown Event for more details.</param>
<param name="Y">The Y coordinate, in device units, of the location of the mouse event. See the OnMouseDown Event for more details.</param>
<remarks>Note to inheritors: Override the OnMouseDown method if you need to perform some action when the
OnMouseDown is raised when the tool is active.
</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.OnMouseUp(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
This method is called when a mouse button is released, when this tool is active.
</summary>
<param name="Button">Specifies which mouse button is released; 1 for the left mouse button, 2 for the right mouse button, and 4 for the middle mouse button.</param>
<param name="Shift">Specifies an integer corresponding to the state of the SHIFT (bit 0), CTRL (bit 1) and ALT (bit 2) keys. When none, some, or all of these keys are pressed none, some, or all the bits get set. These bits correspond to the values 1, 2, and 4, respectively. For example, if both SHIFT and ALT were pressed, Shift would be 5.</param>
<param name="X">The X coordinate, in device units, of the location of the mouse event. See the OnMouseUp Event for more details.</param>
<param name="Y">The Y coordinate, in device units, of the location of the mouse event. See the OnMouseUp Event for more details.</param>
<remarks>Note to inheritors: Override the OnMouseUp method if you need to perform some action when the
OnMouseUp event is raised when the tool is active.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.OnKeyDown(System.Int32,System.Int32)">
<summary>
This method is called when a key is pressed down, when this tool is active.
</summary>
<param name="keyCode">Specifies a virtual key code value of the key pressed on the keyboard. For alpha-numeric keys this corresponds to the ASCII value, for example "A" key returns 65 which is the ASCII value for capital A. Other key codes are F1 to F12 are 112 to 123 respectively.</param>
<param name="Shift">Specifies an integer corresponding to the state of the SHIFT (bit 0), CTRL (bit 1) and ALT (bit 2) keys. When none, some or all of these keys are pressed none, some or all the bits get set. These bits correspond to the values 1, 2, and 4, respectively. For example, if both SHIFT and ALT were pressed, Shift would be 5.</param>
<remarks>Note to inheritors: Override the OnKeyDown method if you need to perform some action when the
OnKeyDown event is raised when the tool is active.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.OnKeyUp(System.Int32,System.Int32)">
<summary>
This method is called when a key is released, when this tool is active.
</summary>
<param name="keyCode">Specifies a virtual key code value of the key released on the keyboard. For alpha-numeric keys this corresponds to the ASCII value, for example "A" key returns 65 which is the ASCII value for capital A. Other key codes are F1 to F12 are 112 to 123 respectively.</param>
<param name="Shift">Specifies an integer corresponding to the state of the SHIFT (bit 0), CTRL (bit 1) and ALT (bit 2) keys. When none, some or all of these keys are pressed none, some or all the bits get set. These bits correspond to the values 1, 2, and 4, respectively. For example, if both SHIFT and ALT were pressed, Shift would be 5.</param>
<remarks>Note to inheritors: Override the OnKeyUp method if you need to perform some action when the
OnKeyUp event is raised when the tool is active.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.OnMouseMove(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
This method is called when the mouse is moved while a mouse button is pressed down, when this tool is active.
</summary>
<param name="Button">Specifies which mouse button is pressed while the mouse is moved; 1 for the left mouse button, 2 for the right mouse button, and 4 for the middle mouse button.</param>
<param name="Shift">Specifies an integer corresponding to the state of the SHIFT (bit 0), CTRL (bit 1) and ALT (bit 2) keys. When none, some, or all of these keys are pressed none, some, or all the bits get set. These bits correspond to the values 1, 2, and 4, respectively. For example, if both SHIFT and ALT were pressed, Shift would be 5.</param>
<param name="X">The X coordinate, in device units, of the location of the mouse event. See the OnMouseMove Event for more details.</param>
<param name="Y">The Y coordinate, in device units, of the location of the mouse event. See the OnMouseMove Event for more details.</param>
<remarks>Note to inheritors: Override the OnMouseMove method if you need to perform some action when the
OnMouseMove event is raised when the tool is active.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.OnContextMenu(System.Int32,System.Int32)">
<summary>
This method is called when the context menu event is raised at the given location.
</summary>
<param name="X">The X coordinate, in device units, of the location of the mouse event. See the OnContextMenu Event for more details.</param>
<param name="Y">The Y coordinate, in device units, of the location of the mouse event. See the OnContextMenu Event for more details.</param>
<returns>A boolean value indicating if the context menu event has been handled.</returns>
<remarks>Note to inheritors: Override the OnContextMenu method if you need to perform some action when the
OnContextMenu event is raised when the tool is active. By default, False is returned, indicating that the
event has not been handled in the tool, and so the default context menu for the view will be displayed instead.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.Deactivate">
<summary>
This method is called when the tool becomes inactive.
</summary>
<returns>A boolean value indicating if the tool can be interrupted by other tools.</returns>
<remarks>Note to inheritors: By default, the <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.m_deactivate"/> field is returned from this member.
Override the Deactivate method if you need to alter this behaviour or perform some action when the
Deactivate event is raised.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.Refresh(System.Int32)">
<summary>
This method is called when a screen display in the application is refreshed, if the tool is active in that display.
</summary>
<param name="hDC">The window handle to the display context which was refreshed.</param>
<remarks>Note to inheritors: Override the Refresh method if you need to perform some action when the
display is refreshed when the tool is active.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.OnDblClick">
<summary>
This method is called when the mouse is double-clicked when the tool is active.
</summary>
<remarks>Note to inheritors: Override the OnDblClick method if you need to perform some action when the
OnDblClick event is raised when the tool is active.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.Cursor">
<summary>
Gets the Cursor handle that is used as the mouse pointer for this tool, shown when this tool is the active tool.
</summary>
<remarks>Note to inheritors: By default, the cursor stored in the <see cref="F:ESRI.ArcGIS.ADF.BaseClasses.BaseTool.m_cursor"/> field is
converted to a handle, and then returned from this member.
It is possible to override this member, if you should need to provide a different implementation.
</remarks>
</member>
<member name="T:ESRI.ArcGIS.ADF.ComReleaser">
<summary>
A Base object to assist devloping against COM objects that require a deterministic release pattern.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.ComReleaser.#ctor">
<summary>
Default Constructor
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.ComReleaser.Finalize">
<summary>
Destructor
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.ComReleaser.ManageLifetime(System.Object)">
<summary>
Manages the lifetime of any COM object. The method will deterministically release the object during the dispose process.
</summary>
<remarks>
Marshal.ReleaseComObject will be called during the disposal process on this Interface pointer until its RCW
reference count becomes 0.
NOTE: Do not add ServerObject interfaces like IMapServer, IGeocodeServer, IMapServerLayout or IMapServerObjects.
</remarks>
<param name="o">The COM object to manage.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.ComReleaser.Dispose">
<summary>
Implementation of IDisposable method Dispose()
The Dispose method should release all the resources that it owns for unmanaged code resources.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.ComReleaser.Dispose(System.Boolean)">
<summary>
Dispose method implementation from IDisposable Interface
</summary>
<param name="disposing">
Boolean value indicating to the method whether
or not it should also dispose managed objects
</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.ComReleaser.ReleaseCOMObject(System.Object)">
<summary>
Decrements the reference count to zero of the supplied runtime callable wrapper.
</summary>
<param name="o">The COM object to release.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CatReg">
<summary>This class is used internally by the classes in this namespace.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CatReg.Reg(System.String,System.String)">
<summary>Registers a class to a component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
<param name="CATID">The CATID of the component category to which a class should be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CatReg.Unreg(System.String,System.String)">
<summary>Unregisters a class from a component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
<param name="CATID">The CATID of the component category from which a class should be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DDEditorExtensions">
<summary>Registers or unregisters a class to the DDEditorExtensions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDEditorExtensions.Register(System.String)">
<summary>Registers a class to the DDEditorExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDEditorExtensions.Unregister(System.String)">
<summary>Unregisters a class from the DDEditorExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DDExtensions">
<summary>Registers or unregisters a class to the DDExtensions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDExtensions.Register(System.String)">
<summary>Registers a class to the DDExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDExtensions.Unregister(System.String)">
<summary>Unregisters a class from the DDExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionAnnotationTools">
<summary>Registers or unregisters a class to the DDFeatureConstructionAnnotationTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionAnnotationTools.Register(System.String)">
<summary>Registers a class to the DDFeatureConstructionAnnotationTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionAnnotationTools.Unregister(System.String)">
<summary>Unregisters a class from the DDFeatureConstructionAnnotationTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionCOGOLineTools">
<summary>Registers or unregisters a class to the DDFeatureConstructionCOGOLineTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionCOGOLineTools.Register(System.String)">
<summary>Registers a class to the DDFeatureConstructionCOGOLineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionCOGOLineTools.Unregister(System.String)">
<summary>Unregisters a class from the DDFeatureConstructionCOGOLineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionDimensionTools">
<summary>Registers or unregisters a class to the DDFeatureConstructionDimensionTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionDimensionTools.Register(System.String)">
<summary>Registers a class to the DDFeatureConstructionDimensionTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionDimensionTools.Unregister(System.String)">
<summary>Unregisters a class from the DDFeatureConstructionDimensionTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionGNLineTools">
<summary>Registers or unregisters a class to the DDFeatureConstructionGNLineTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionGNLineTools.Register(System.String)">
<summary>Registers a class to the DDFeatureConstructionGNLineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionGNLineTools.Unregister(System.String)">
<summary>Unregisters a class from the DDFeatureConstructionGNLineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionMultipatchTools">
<summary>Registers or unregisters a class to the DDFeatureConstructionMultipatchTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionMultipatchTools.Register(System.String)">
<summary>Registers a class to the DDFeatureConstructionMultipatchTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionMultipatchTools.Unregister(System.String)">
<summary>Unregisters a class from the DDFeatureConstructionMultipatchTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionMultipointTools">
<summary>Registers or unregisters a class to the DDFeatureConstructionMultipointTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionMultipointTools.Register(System.String)">
<summary>Registers a class to the DDFeatureConstructionMultipointTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionMultipointTools.Unregister(System.String)">
<summary>Unregisters a class from the DDFeatureConstructionMultipointTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionPointTools">
<summary>Registers or unregisters a class to the DDFeatureConstructionPointTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionPointTools.Register(System.String)">
<summary>Registers a class to the DDFeatureConstructionPointTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionPointTools.Unregister(System.String)">
<summary>Unregisters a class from the DDFeatureConstructionPointTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionPolygonTools">
<summary>Registers or unregisters a class to the DDFeatureConstructionPolygonTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionPolygonTools.Register(System.String)">
<summary>Registers a class to the DDFeatureConstructionPolygonTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionPolygonTools.Unregister(System.String)">
<summary>Unregisters a class from the DDFeatureConstructionPolygonTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionPolylineTools">
<summary>Registers or unregisters a class to the DDFeatureConstructionPolylineTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionPolylineTools.Register(System.String)">
<summary>Registers a class to the DDFeatureConstructionPolylineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionPolylineTools.Unregister(System.String)">
<summary>Unregisters a class from the DDFeatureConstructionPolylineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionTurnLineTools">
<summary>Registers or unregisters a class to the DDFeatureConstructionTurnLineTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionTurnLineTools.Register(System.String)">
<summary>Registers a class to the DDFeatureConstructionTurnLineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDFeatureConstructionTurnLineTools.Unregister(System.String)">
<summary>Unregisters a class from the DDFeatureConstructionTurnLineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AdjustmentMethodPropertyPages">
<summary>Registers or unregisters a class to the AdjustmentMethodPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AdjustmentMethodPropertyPages.Register(System.String)">
<summary>Registers a class to the AdjustmentMethodPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AdjustmentMethodPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AdjustmentMethodPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AdjustmentPropertyPages">
<summary>Registers or unregisters a class to the AdjustmentPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AdjustmentPropertyPages.Register(System.String)">
<summary>Registers a class to the AdjustmentPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AdjustmentPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AdjustmentPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGAnimationKeyframePropertyPages">
<summary>Registers or unregisters a class to the AGAnimationKeyframePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGAnimationKeyframePropertyPages.Register(System.String)">
<summary>Registers a class to the AGAnimationKeyframePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGAnimationKeyframePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGAnimationKeyframePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGAnimationPropertyPages">
<summary>Registers or unregisters a class to the AGAnimationPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGAnimationPropertyPages.Register(System.String)">
<summary>Registers a class to the AGAnimationPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGAnimationPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGAnimationPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGAnimationTrackPropertyPages">
<summary>Registers or unregisters a class to the AGAnimationTrackPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGAnimationTrackPropertyPages.Register(System.String)">
<summary>Registers a class to the AGAnimationTrackPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGAnimationTrackPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGAnimationTrackPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGSConnAdminPropertyPages">
<summary>Registers or unregisters a class to the AGSConnAdminPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSConnAdminPropertyPages.Register(System.String)">
<summary>Registers a class to the AGSConnAdminPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSConnAdminPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGSConnAdminPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGSConnUserPropertyPages">
<summary>Registers or unregisters a class to the AGSConnUserPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSConnUserPropertyPages.Register(System.String)">
<summary>Registers a class to the AGSConnUserPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSConnUserPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGSConnUserPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGSFolderPropertyPages">
<summary>Registers or unregisters a class to the AGSFolderPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSFolderPropertyPages.Register(System.String)">
<summary>Registers a class to the AGSFolderPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSFolderPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGSFolderPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGSGeocodePropertyPages">
<summary>Registers or unregisters a class to the AGSGeocodePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSGeocodePropertyPages.Register(System.String)">
<summary>Registers a class to the AGSGeocodePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSGeocodePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGSGeocodePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGSGeoDataServerPropertyPages">
<summary>Registers or unregisters a class to the AGSGeoDataServerPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSGeoDataServerPropertyPages.Register(System.String)">
<summary>Registers a class to the AGSGeoDataServerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSGeoDataServerPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGSGeoDataServerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGSGeometryPropertyPages">
<summary>Registers or unregisters a class to the AGSGeometryPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSGeometryPropertyPages.Register(System.String)">
<summary>Registers a class to the AGSGeometryPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSGeometryPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGSGeometryPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGSGeoprocessingPropertyPages">
<summary>Registers or unregisters a class to the AGSGeoprocessingPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSGeoprocessingPropertyPages.Register(System.String)">
<summary>Registers a class to the AGSGeoprocessingPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSGeoprocessingPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGSGeoprocessingPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGSGlobeServerPropertyPages">
<summary>Registers or unregisters a class to the AGSGlobeServerPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSGlobeServerPropertyPages.Register(System.String)">
<summary>Registers a class to the AGSGlobeServerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSGlobeServerPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGSGlobeServerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGSImagePropertyPages">
<summary>Registers or unregisters a class to the AGSImagePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSImagePropertyPages.Register(System.String)">
<summary>Registers a class to the AGSImagePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSImagePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGSImagePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGSMapPropertyPages">
<summary>Registers or unregisters a class to the AGSMapPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSMapPropertyPages.Register(System.String)">
<summary>Registers a class to the AGSMapPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSMapPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGSMapPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGSMobilePropertyPages">
<summary>Registers or unregisters a class to the AGSMobilePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSMobilePropertyPages.Register(System.String)">
<summary>Registers a class to the AGSMobilePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSMobilePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGSMobilePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGSParameterPages">
<summary>Registers or unregisters a class to the AGSParameterPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSParameterPages.Register(System.String)">
<summary>Registers a class to the AGSParameterPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSParameterPages.Unregister(System.String)">
<summary>Unregisters a class from the AGSParameterPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGSServerPropertyPages">
<summary>Registers or unregisters a class to the AGSServerPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSServerPropertyPages.Register(System.String)">
<summary>Registers a class to the AGSServerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSServerPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the AGSServerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AGSSOEParameterPages">
<summary>Registers or unregisters a class to the AGSSOEParameterPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSSOEParameterPages.Register(System.String)">
<summary>Registers a class to the AGSSOEParameterPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AGSSOEParameterPages.Unregister(System.String)">
<summary>Unregisters a class from the AGSSOEParameterPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AnimationVideoExporters">
<summary>Registers or unregisters a class to the AnimationVideoExporters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnimationVideoExporters.Register(System.String)">
<summary>Registers a class to the AnimationVideoExporters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnimationVideoExporters.Unregister(System.String)">
<summary>Unregisters a class from the AnimationVideoExporters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AnnoEditToolMenuCommands">
<summary>Registers or unregisters a class to the AnnoEditToolMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnnoEditToolMenuCommands.Register(System.String)">
<summary>Registers a class to the AnnoEditToolMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnnoEditToolMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the AnnoEditToolMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AnnotationConstructors">
<summary>Registers or unregisters a class to the AnnotationConstructors component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnnotationConstructors.Register(System.String)">
<summary>Registers a class to the AnnotationConstructors component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnnotationConstructors.Unregister(System.String)">
<summary>Unregisters a class from the AnnotationConstructors component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AnnotationExpresionPages">
<summary>Registers or unregisters a class to the AnnotationExpresionPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnnotationExpresionPages.Register(System.String)">
<summary>Registers a class to the AnnotationExpresionPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnnotationExpresionPages.Unregister(System.String)">
<summary>Unregisters a class from the AnnotationExpresionPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AnnotationExpressionParsers">
<summary>Registers or unregisters a class to the AnnotationExpressionParsers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnnotationExpressionParsers.Register(System.String)">
<summary>Registers a class to the AnnotationExpressionParsers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnnotationExpressionParsers.Unregister(System.String)">
<summary>Unregisters a class from the AnnotationExpressionParsers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AnnotationPlacementPages">
<summary>Registers or unregisters a class to the AnnotationPlacementPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnnotationPlacementPages.Register(System.String)">
<summary>Registers a class to the AnnotationPlacementPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnnotationPlacementPages.Unregister(System.String)">
<summary>Unregisters a class from the AnnotationPlacementPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AnnotationPlacementPluginPages">
<summary>Registers or unregisters a class to the AnnotationPlacementPluginPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnnotationPlacementPluginPages.Register(System.String)">
<summary>Registers a class to the AnnotationPlacementPluginPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnnotationPlacementPluginPages.Unregister(System.String)">
<summary>Unregisters a class from the AnnotationPlacementPluginPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AnnotationPropertiesConverters">
<summary>Registers or unregisters a class to the AnnotationPropertiesConverters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnnotationPropertiesConverters.Register(System.String)">
<summary>Registers a class to the AnnotationPropertiesConverters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AnnotationPropertiesConverters.Unregister(System.String)">
<summary>Unregisters a class from the AnnotationPropertiesConverters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.APEExtension">
<summary>Registers or unregisters a class to the APEExtension component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.APEExtension.Register(System.String)">
<summary>Registers a class to the APEExtension component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.APEExtension.Unregister(System.String)">
<summary>Unregisters a class from the APEExtension component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ArcToolboxTools">
<summary>Registers or unregisters a class to the ArcToolboxTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ArcToolboxTools.Register(System.String)">
<summary>Registers a class to the ArcToolboxTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ArcToolboxTools.Unregister(System.String)">
<summary>Unregisters a class from the ArcToolboxTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ArcToolboxViews">
<summary>Registers or unregisters a class to the ArcToolboxViews component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ArcToolboxViews.Register(System.String)">
<summary>Registers a class to the ArcToolboxViews component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ArcToolboxViews.Unregister(System.String)">
<summary>Unregisters a class from the ArcToolboxViews component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AreaBoundaryCoveredByAreaBoundaryErrorCommands">
<summary>Registers or unregisters a class to the AreaBoundaryCoveredByAreaBoundaryErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaBoundaryCoveredByAreaBoundaryErrorCommands.Register(System.String)">
<summary>Registers a class to the AreaBoundaryCoveredByAreaBoundaryErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaBoundaryCoveredByAreaBoundaryErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the AreaBoundaryCoveredByAreaBoundaryErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AreaContainsOnePointErrorCommands">
<summary>Registers or unregisters a class to the AreaContainsOnePointErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaContainsOnePointErrorCommands.Register(System.String)">
<summary>Registers a class to the AreaContainsOnePointErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaContainsOnePointErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the AreaContainsOnePointErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AreaContainsPointErrorCommands">
<summary>Registers or unregisters a class to the AreaContainsPointErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaContainsPointErrorCommands.Register(System.String)">
<summary>Registers a class to the AreaContainsPointErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaContainsPointErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the AreaContainsPointErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AreaCoveredByAreaErrorCommands">
<summary>Registers or unregisters a class to the AreaCoveredByAreaErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaCoveredByAreaErrorCommands.Register(System.String)">
<summary>Registers a class to the AreaCoveredByAreaErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaCoveredByAreaErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the AreaCoveredByAreaErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AreaCoverErrorCommands">
<summary>Registers or unregisters a class to the AreaCoverErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaCoverErrorCommands.Register(System.String)">
<summary>Registers a class to the AreaCoverErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaCoverErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the AreaCoverErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AreaGapErrorCommands">
<summary>Registers or unregisters a class to the AreaGapErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaGapErrorCommands.Register(System.String)">
<summary>Registers a class to the AreaGapErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaGapErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the AreaGapErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AreaOverlapErrorCommands">
<summary>Registers or unregisters a class to the AreaOverlapErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaOverlapErrorCommands.Register(System.String)">
<summary>Registers a class to the AreaOverlapErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaOverlapErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the AreaOverlapErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AreaPatches">
<summary>Registers or unregisters a class to the AreaPatches component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaPatches.Register(System.String)">
<summary>Registers a class to the AreaPatches component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaPatches.Unregister(System.String)">
<summary>Unregisters a class from the AreaPatches component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AreaTessellateErrorCommands">
<summary>Registers or unregisters a class to the AreaTessellateErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaTessellateErrorCommands.Register(System.String)">
<summary>Registers a class to the AreaTessellateErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AreaTessellateErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the AreaTessellateErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AttributeTransferTypes">
<summary>Registers or unregisters a class to the AttributeTransferTypes component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AttributeTransferTypes.Register(System.String)">
<summary>Registers a class to the AttributeTransferTypes component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AttributeTransferTypes.Unregister(System.String)">
<summary>Unregisters a class from the AttributeTransferTypes component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AVFSrcImporters">
<summary>Registers or unregisters a class to the AVFSrcImporters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AVFSrcImporters.Register(System.String)">
<summary>Registers a class to the AVFSrcImporters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AVFSrcImporters.Unregister(System.String)">
<summary>Unregisters a class from the AVFSrcImporters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.AVThemeImporters">
<summary>Registers or unregisters a class to the AVThemeImporters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AVThemeImporters.Register(System.String)">
<summary>Registers a class to the AVThemeImporters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.AVThemeImporters.Unregister(System.String)">
<summary>Unregisters a class from the AVThemeImporters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.Backgrounds">
<summary>Registers or unregisters a class to the Backgrounds component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.Backgrounds.Register(System.String)">
<summary>Registers a class to the Backgrounds component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.Backgrounds.Unregister(System.String)">
<summary>Unregisters a class from the Backgrounds component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGL">
<summary>Registers or unregisters a class to the BGL component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGL.Register(System.String)">
<summary>Registers a class to the BGL component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGL.Unregister(System.String)">
<summary>Unregisters a class from the BGL component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLColorRamps">
<summary>Registers or unregisters a class to the BGLColorRamps component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLColorRamps.Register(System.String)">
<summary>Registers a class to the BGLColorRamps component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLColorRamps.Unregister(System.String)">
<summary>Unregisters a class from the BGLColorRamps component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLColors">
<summary>Registers or unregisters a class to the BGLColors component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLColors.Register(System.String)">
<summary>Registers a class to the BGLColors component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLColors.Unregister(System.String)">
<summary>Unregisters a class from the BGLColors component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLCustomOps">
<summary>Registers or unregisters a class to the BGLCustomOps component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLCustomOps.Register(System.String)">
<summary>Registers a class to the BGLCustomOps component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLCustomOps.Unregister(System.String)">
<summary>Unregisters a class from the BGLCustomOps component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLFillOpEffect">
<summary>Registers or unregisters a class to the BGLFillOpEffect component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLFillOpEffect.Register(System.String)">
<summary>Registers a class to the BGLFillOpEffect component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLFillOpEffect.Unregister(System.String)">
<summary>Unregisters a class from the BGLFillOpEffect component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLFillOps">
<summary>Registers or unregisters a class to the BGLFillOps component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLFillOps.Register(System.String)">
<summary>Registers a class to the BGLFillOps component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLFillOps.Unregister(System.String)">
<summary>Unregisters a class from the BGLFillOps component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLGeometricEffects">
<summary>Registers or unregisters a class to the BGLGeometricEffects component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLGeometricEffects.Register(System.String)">
<summary>Registers a class to the BGLGeometricEffects component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLGeometricEffects.Unregister(System.String)">
<summary>Unregisters a class from the BGLGeometricEffects component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLIMAGEDECODERS">
<summary>Registers or unregisters a class to the BGLIMAGEDECODERS component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLIMAGEDECODERS.Register(System.String)">
<summary>Registers a class to the BGLIMAGEDECODERS component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLIMAGEDECODERS.Unregister(System.String)">
<summary>Unregisters a class from the BGLIMAGEDECODERS component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLIMAGEENCODERS">
<summary>Registers or unregisters a class to the BGLIMAGEENCODERS component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLIMAGEENCODERS.Register(System.String)">
<summary>Registers a class to the BGLIMAGEENCODERS component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLIMAGEENCODERS.Unregister(System.String)">
<summary>Unregisters a class from the BGLIMAGEENCODERS component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLMarkerPlacements">
<summary>Registers or unregisters a class to the BGLMarkerPlacements component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLMarkerPlacements.Register(System.String)">
<summary>Registers a class to the BGLMarkerPlacements component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLMarkerPlacements.Unregister(System.String)">
<summary>Unregisters a class from the BGLMarkerPlacements component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLMarkerSymbols">
<summary>Registers or unregisters a class to the BGLMarkerSymbols component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLMarkerSymbols.Register(System.String)">
<summary>Registers a class to the BGLMarkerSymbols component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLMarkerSymbols.Unregister(System.String)">
<summary>Unregisters a class from the BGLMarkerSymbols component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLPaintingOps">
<summary>Registers or unregisters a class to the BGLPaintingOps component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLPaintingOps.Register(System.String)">
<summary>Registers a class to the BGLPaintingOps component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLPaintingOps.Unregister(System.String)">
<summary>Unregisters a class from the BGLPaintingOps component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLPatterns">
<summary>Registers or unregisters a class to the BGLPatterns component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLPatterns.Register(System.String)">
<summary>Registers a class to the BGLPatterns component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLPatterns.Unregister(System.String)">
<summary>Unregisters a class from the BGLPatterns component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLSimpleSymbols">
<summary>Registers or unregisters a class to the BGLSimpleSymbols component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLSimpleSymbols.Register(System.String)">
<summary>Registers a class to the BGLSimpleSymbols component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLSimpleSymbols.Unregister(System.String)">
<summary>Unregisters a class from the BGLSimpleSymbols component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLStrokeOps">
<summary>Registers or unregisters a class to the BGLStrokeOps component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLStrokeOps.Register(System.String)">
<summary>Registers a class to the BGLStrokeOps component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLStrokeOps.Unregister(System.String)">
<summary>Unregisters a class from the BGLStrokeOps component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLSymbols">
<summary>Registers or unregisters a class to the BGLSymbols component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLSymbols.Register(System.String)">
<summary>Registers a class to the BGLSymbols component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLSymbols.Unregister(System.String)">
<summary>Unregisters a class from the BGLSymbols component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BGLTextSymbols">
<summary>Registers or unregisters a class to the BGLTextSymbols component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLTextSymbols.Register(System.String)">
<summary>Registers a class to the BGLTextSymbols component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BGLTextSymbols.Unregister(System.String)">
<summary>Unregisters a class from the BGLTextSymbols component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.Borders">
<summary>Registers or unregisters a class to the Borders component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.Borders.Register(System.String)">
<summary>Registers a class to the Borders component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.Borders.Unregister(System.String)">
<summary>Unregisters a class from the Borders component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BoundaryCoincidenceErrorCommands">
<summary>Registers or unregisters a class to the BoundaryCoincidenceErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BoundaryCoincidenceErrorCommands.Register(System.String)">
<summary>Registers a class to the BoundaryCoincidenceErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BoundaryCoincidenceErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the BoundaryCoincidenceErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BoundaryCoverErrorCommands">
<summary>Registers or unregisters a class to the BoundaryCoverErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BoundaryCoverErrorCommands.Register(System.String)">
<summary>Registers a class to the BoundaryCoverErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BoundaryCoverErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the BoundaryCoverErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.BuildMethods">
<summary>Registers or unregisters a class to the BuildMethods component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BuildMethods.Register(System.String)">
<summary>Registers a class to the BuildMethods component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.BuildMethods.Unregister(System.String)">
<summary>Unregisters a class from the BuildMethods component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CadastralEditorPages">
<summary>Registers or unregisters a class to the CadastralEditorPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CadastralEditorPages.Register(System.String)">
<summary>Registers a class to the CadastralEditorPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CadastralEditorPages.Unregister(System.String)">
<summary>Unregisters a class from the CadastralEditorPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CadastralFabricPropertyPages">
<summary>Registers or unregisters a class to the CadastralFabricPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CadastralFabricPropertyPages.Register(System.String)">
<summary>Registers a class to the CadastralFabricPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CadastralFabricPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the CadastralFabricPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CadastralOptionPages">
<summary>Registers or unregisters a class to the CadastralOptionPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CadastralOptionPages.Register(System.String)">
<summary>Registers a class to the CadastralOptionPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CadastralOptionPages.Unregister(System.String)">
<summary>Unregisters a class from the CadastralOptionPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CadastralPlanPages">
<summary>Registers or unregisters a class to the CadastralPlanPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CadastralPlanPages.Register(System.String)">
<summary>Registers a class to the CadastralPlanPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CadastralPlanPages.Unregister(System.String)">
<summary>Unregisters a class from the CadastralPlanPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CadDrawingPropertyPages">
<summary>Registers or unregisters a class to the CadDrawingPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CadDrawingPropertyPages.Register(System.String)">
<summary>Registers a class to the CadDrawingPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CadDrawingPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the CadDrawingPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CadFeatureClassPropertyPages">
<summary>Registers or unregisters a class to the CadFeatureClassPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CadFeatureClassPropertyPages.Register(System.String)">
<summary>Registers a class to the CadFeatureClassPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CadFeatureClassPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the CadFeatureClassPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CadFeaturePropertyPages">
<summary>Registers or unregisters a class to the CadFeaturePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CadFeaturePropertyPages.Register(System.String)">
<summary>Registers a class to the CadFeaturePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CadFeaturePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the CadFeaturePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CartoXMXDLayerAnalyzers">
<summary>Registers or unregisters a class to the CartoXMXDLayerAnalyzers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CartoXMXDLayerAnalyzers.Register(System.String)">
<summary>Registers a class to the CartoXMXDLayerAnalyzers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CartoXMXDLayerAnalyzers.Unregister(System.String)">
<summary>Unregisters a class from the CartoXMXDLayerAnalyzers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CartoXMXDMapAnalyzers">
<summary>Registers or unregisters a class to the CartoXMXDMapAnalyzers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CartoXMXDMapAnalyzers.Register(System.String)">
<summary>Registers a class to the CartoXMXDMapAnalyzers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CartoXMXDMapAnalyzers.Unregister(System.String)">
<summary>Unregisters a class from the CartoXMXDMapAnalyzers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CartoXPublishTargets">
<summary>Registers or unregisters a class to the CartoXPublishTargets component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CartoXPublishTargets.Register(System.String)">
<summary>Registers a class to the CartoXPublishTargets component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CartoXPublishTargets.Unregister(System.String)">
<summary>Unregisters a class from the CartoXPublishTargets component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CartoXServerLayerAnalyzers">
<summary>Registers or unregisters a class to the CartoXServerLayerAnalyzers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CartoXServerLayerAnalyzers.Register(System.String)">
<summary>Registers a class to the CartoXServerLayerAnalyzers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CartoXServerLayerAnalyzers.Unregister(System.String)">
<summary>Unregisters a class from the CartoXServerLayerAnalyzers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CartoXServerMapAnalyzers">
<summary>Registers or unregisters a class to the CartoXServerMapAnalyzers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CartoXServerMapAnalyzers.Register(System.String)">
<summary>Registers a class to the CartoXServerMapAnalyzers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CartoXServerMapAnalyzers.Unregister(System.String)">
<summary>Unregisters a class from the CartoXServerMapAnalyzers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CheckOutPropertyPages">
<summary>Registers or unregisters a class to the CheckOutPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CheckOutPropertyPages.Register(System.String)">
<summary>Registers a class to the CheckOutPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CheckOutPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the CheckOutPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ClassificationMethods">
<summary>Registers or unregisters a class to the ClassificationMethods component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ClassificationMethods.Register(System.String)">
<summary>Registers a class to the ClassificationMethods component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ClassificationMethods.Unregister(System.String)">
<summary>Unregisters a class from the ClassificationMethods component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ClipboardFormats">
<summary>Registers or unregisters a class to the ClipboardFormats component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ClipboardFormats.Register(System.String)">
<summary>Registers a class to the ClipboardFormats component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ClipboardFormats.Unregister(System.String)">
<summary>Unregisters a class from the ClipboardFormats component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ColorCorrectionPages">
<summary>Registers or unregisters a class to the ColorCorrectionPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ColorCorrectionPages.Register(System.String)">
<summary>Registers a class to the ColorCorrectionPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ColorCorrectionPages.Unregister(System.String)">
<summary>Unregisters a class from the ColorCorrectionPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ColorPropertyPages">
<summary>Registers or unregisters a class to the ColorPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ColorPropertyPages.Register(System.String)">
<summary>Registers a class to the ColorPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ColorPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the ColorPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ColorRamp">
<summary>Registers or unregisters a class to the ColorRamp component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ColorRamp.Register(System.String)">
<summary>Registers a class to the ColorRamp component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ColorRamp.Unregister(System.String)">
<summary>Unregisters a class from the ColorRamp component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ColorRampPropetyPages">
<summary>Registers or unregisters a class to the ColorRampPropetyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ColorRampPropetyPages.Register(System.String)">
<summary>Registers a class to the ColorRampPropetyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ColorRampPropetyPages.Unregister(System.String)">
<summary>Unregisters a class from the ColorRampPropetyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ConstructionToolContextMenuItems">
<summary>Registers or unregisters a class to the ConstructionToolContextMenuItems component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ConstructionToolContextMenuItems.Register(System.String)">
<summary>Registers a class to the ConstructionToolContextMenuItems component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ConstructionToolContextMenuItems.Unregister(System.String)">
<summary>Unregisters a class from the ConstructionToolContextMenuItems component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ContentsViews">
<summary>Registers or unregisters a class to the ContentsViews component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ContentsViews.Register(System.String)">
<summary>Registers a class to the ContentsViews component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ContentsViews.Unregister(System.String)">
<summary>Unregisters a class from the ContentsViews component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ContextAnalyzers">
<summary>Registers or unregisters a class to the ContextAnalyzers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ContextAnalyzers.Register(System.String)">
<summary>Registers a class to the ContextAnalyzers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ContextAnalyzers.Unregister(System.String)">
<summary>Unregisters a class from the ContextAnalyzers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ControlsCommands">
<summary>Registers or unregisters a class to the ControlsCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ControlsCommands.Register(System.String)">
<summary>Registers a class to the ControlsCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ControlsCommands.Unregister(System.String)">
<summary>Unregisters a class from the ControlsCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ControlsMenus">
<summary>Registers or unregisters a class to the ControlsMenus component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ControlsMenus.Register(System.String)">
<summary>Registers a class to the ControlsMenus component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ControlsMenus.Unregister(System.String)">
<summary>Unregisters a class from the ControlsMenus component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ControlsPalettes">
<summary>Registers or unregisters a class to the ControlsPalettes component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ControlsPalettes.Register(System.String)">
<summary>Registers a class to the ControlsPalettes component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ControlsPalettes.Unregister(System.String)">
<summary>Unregisters a class from the ControlsPalettes component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ControlsToolbars">
<summary>Registers or unregisters a class to the ControlsToolbars component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ControlsToolbars.Register(System.String)">
<summary>Registers a class to the ControlsToolbars component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ControlsToolbars.Unregister(System.String)">
<summary>Unregisters a class from the ControlsToolbars component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CoverageFeatureClassPropertyPages">
<summary>Registers or unregisters a class to the CoverageFeatureClassPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CoverageFeatureClassPropertyPages.Register(System.String)">
<summary>Registers a class to the CoverageFeatureClassPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CoverageFeatureClassPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the CoverageFeatureClassPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CoveragePropertyPages">
<summary>Registers or unregisters a class to the CoveragePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CoveragePropertyPages.Register(System.String)">
<summary>Registers a class to the CoveragePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CoveragePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the CoveragePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.CustomCheckOutPropertyPages">
<summary>Registers or unregisters a class to the CustomCheckOutPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CustomCheckOutPropertyPages.Register(System.String)">
<summary>Registers a class to the CustomCheckOutPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.CustomCheckOutPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the CustomCheckOutPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DatabaseServerPropertyPages">
<summary>Registers or unregisters a class to the DatabaseServerPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DatabaseServerPropertyPages.Register(System.String)">
<summary>Registers a class to the DatabaseServerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DatabaseServerPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the DatabaseServerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DataExclusionPropertyPages">
<summary>Registers or unregisters a class to the DataExclusionPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DataExclusionPropertyPages.Register(System.String)">
<summary>Registers a class to the DataExclusionPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DataExclusionPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the DataExclusionPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DataGraphPropertyPages">
<summary>Registers or unregisters a class to the DataGraphPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DataGraphPropertyPages.Register(System.String)">
<summary>Registers a class to the DataGraphPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DataGraphPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the DataGraphPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DataSamplingPropertyPages">
<summary>Registers or unregisters a class to the DataSamplingPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DataSamplingPropertyPages.Register(System.String)">
<summary>Registers a class to the DataSamplingPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DataSamplingPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the DataSamplingPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DataWindowFactory">
<summary>Registers or unregisters a class to the DataWindowFactory component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DataWindowFactory.Register(System.String)">
<summary>Registers a class to the DataWindowFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DataWindowFactory.Unregister(System.String)">
<summary>Unregisters a class from the DataWindowFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DDDAnimationTypes">
<summary>Registers or unregisters a class to the DDDAnimationTypes component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDDAnimationTypes.Register(System.String)">
<summary>Registers a class to the DDDAnimationTypes component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DDDAnimationTypes.Unregister(System.String)">
<summary>Unregisters a class from the DDDAnimationTypes component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DimensionConstructors">
<summary>Registers or unregisters a class to the DimensionConstructors component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DimensionConstructors.Register(System.String)">
<summary>Registers a class to the DimensionConstructors component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DimensionConstructors.Unregister(System.String)">
<summary>Unregisters a class from the DimensionConstructors component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.DynamicText">
<summary>Registers or unregisters a class to the DynamicText component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DynamicText.Register(System.String)">
<summary>Registers a class to the DynamicText component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.DynamicText.Unregister(System.String)">
<summary>Unregisters a class from the DynamicText component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EditorExtensions">
<summary>Registers or unregisters a class to the EditorExtensions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EditorExtensions.Register(System.String)">
<summary>Registers a class to the EditorExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EditorExtensions.Unregister(System.String)">
<summary>Unregisters a class from the EditorExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EditorPropertyPages">
<summary>Registers or unregisters a class to the EditorPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EditorPropertyPages.Register(System.String)">
<summary>Registers a class to the EditorPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EditorPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the EditorPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EditorToolbars">
<summary>Registers or unregisters a class to the EditorToolbars component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EditorToolbars.Register(System.String)">
<summary>Registers a class to the EditorToolbars component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EditorToolbars.Unregister(System.String)">
<summary>Unregisters a class from the EditorToolbars component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EditSelectToolContextMenu">
<summary>Registers or unregisters a class to the EditSelectToolContextMenu component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EditSelectToolContextMenu.Register(System.String)">
<summary>Registers a class to the EditSelectToolContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EditSelectToolContextMenu.Unregister(System.String)">
<summary>Unregisters a class from the EditSelectToolContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EditTasks">
<summary>Registers or unregisters a class to the EditTasks component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EditTasks.Register(System.String)">
<summary>Registers a class to the EditTasks component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EditTasks.Unregister(System.String)">
<summary>Unregisters a class from the EditTasks component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EditTemplatePropertyPages">
<summary>Registers or unregisters a class to the EditTemplatePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EditTemplatePropertyPages.Register(System.String)">
<summary>Registers a class to the EditTemplatePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EditTemplatePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the EditTemplatePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EditToolMenuCommands">
<summary>Registers or unregisters a class to the EditToolMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EditToolMenuCommands.Register(System.String)">
<summary>Registers a class to the EditToolMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EditToolMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the EditToolMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ElementPropertyPages">
<summary>Registers or unregisters a class to the ElementPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ElementPropertyPages.Register(System.String)">
<summary>Registers a class to the ElementPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ElementPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the ElementPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EndpointCoveredByPointErrorCommands">
<summary>Registers or unregisters a class to the EndpointCoveredByPointErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EndpointCoveredByPointErrorCommands.Register(System.String)">
<summary>Registers a class to the EndpointCoveredByPointErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EndpointCoveredByPointErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the EndpointCoveredByPointErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EngineDataDialogBrowser">
<summary>Registers or unregisters a class to the EngineDataDialogBrowser component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineDataDialogBrowser.Register(System.String)">
<summary>Registers a class to the EngineDataDialogBrowser component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineDataDialogBrowser.Unregister(System.String)">
<summary>Unregisters a class from the EngineDataDialogBrowser component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EngineEditTasks">
<summary>Registers or unregisters a class to the EngineEditTasks component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineEditTasks.Register(System.String)">
<summary>Registers a class to the EngineEditTasks component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineEditTasks.Unregister(System.String)">
<summary>Unregisters a class from the EngineEditTasks component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EngineExtension">
<summary>Registers or unregisters a class to the EngineExtension component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineExtension.Register(System.String)">
<summary>Registers a class to the EngineExtension component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineExtension.Unregister(System.String)">
<summary>Unregisters a class from the EngineExtension component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EngineExtensionJIT">
<summary>Registers or unregisters a class to the EngineExtensionJIT component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineExtensionJIT.Register(System.String)">
<summary>Registers a class to the EngineExtensionJIT component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineExtensionJIT.Unregister(System.String)">
<summary>Unregisters a class from the EngineExtensionJIT component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EngineNetworkAnalystWindowItemCategory">
<summary>Registers or unregisters a class to the EngineNetworkAnalystWindowItemCategory component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineNetworkAnalystWindowItemCategory.Register(System.String)">
<summary>Registers a class to the EngineNetworkAnalystWindowItemCategory component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineNetworkAnalystWindowItemCategory.Unregister(System.String)">
<summary>Unregisters a class from the EngineNetworkAnalystWindowItemCategory component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EngineRoutingServiceCategory">
<summary>Registers or unregisters a class to the EngineRoutingServiceCategory component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineRoutingServiceCategory.Register(System.String)">
<summary>Registers a class to the EngineRoutingServiceCategory component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineRoutingServiceCategory.Unregister(System.String)">
<summary>Unregisters a class from the EngineRoutingServiceCategory component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EngineSchematicCreateDiagramDialog">
<summary>Registers or unregisters a class to the EngineSchematicCreateDiagramDialog component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineSchematicCreateDiagramDialog.Register(System.String)">
<summary>Registers a class to the EngineSchematicCreateDiagramDialog component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineSchematicCreateDiagramDialog.Unregister(System.String)">
<summary>Unregisters a class from the EngineSchematicCreateDiagramDialog component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EngineSchematicSaveAsDiagramDialog">
<summary>Registers or unregisters a class to the EngineSchematicSaveAsDiagramDialog component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineSchematicSaveAsDiagramDialog.Register(System.String)">
<summary>Registers a class to the EngineSchematicSaveAsDiagramDialog component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineSchematicSaveAsDiagramDialog.Unregister(System.String)">
<summary>Unregisters a class from the EngineSchematicSaveAsDiagramDialog component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.EngineSnapAgents">
<summary>Registers or unregisters a class to the EngineSnapAgents component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineSnapAgents.Register(System.String)">
<summary>Registers a class to the EngineSnapAgents component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.EngineSnapAgents.Unregister(System.String)">
<summary>Unregisters a class from the EngineSnapAgents component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ESDAEngineMethods">
<summary>Registers or unregisters a class to the ESDAEngineMethods component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ESDAEngineMethods.Register(System.String)">
<summary>Registers a class to the ESDAEngineMethods component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ESDAEngineMethods.Unregister(System.String)">
<summary>Unregisters a class from the ESDAEngineMethods component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ESRIDeveloperKitLibraryHandlingExtensions">
<summary>Registers or unregisters a class to the ESRIDeveloperKitLibraryHandlingExtensions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ESRIDeveloperKitLibraryHandlingExtensions.Register(System.String)">
<summary>Registers a class to the ESRIDeveloperKitLibraryHandlingExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ESRIDeveloperKitLibraryHandlingExtensions.Unregister(System.String)">
<summary>Unregisters a class from the ESRIDeveloperKitLibraryHandlingExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ESRIExportPropertyDialogs">
<summary>Registers or unregisters a class to the ESRIExportPropertyDialogs component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ESRIExportPropertyDialogs.Register(System.String)">
<summary>Registers a class to the ESRIExportPropertyDialogs component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ESRIExportPropertyDialogs.Unregister(System.String)">
<summary>Unregisters a class from the ESRIExportPropertyDialogs component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ESRIExportPropertyPages">
<summary>Registers or unregisters a class to the ESRIExportPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ESRIExportPropertyPages.Register(System.String)">
<summary>Registers a class to the ESRIExportPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ESRIExportPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the ESRIExportPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ESRIPrintEnginePropertyDialogs">
<summary>Registers or unregisters a class to the ESRIPrintEnginePropertyDialogs component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ESRIPrintEnginePropertyDialogs.Register(System.String)">
<summary>Registers a class to the ESRIPrintEnginePropertyDialogs component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ESRIPrintEnginePropertyDialogs.Unregister(System.String)">
<summary>Unregisters a class from the ESRIPrintEnginePropertyDialogs component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ESRIRasterPrintDrivers">
<summary>Registers or unregisters a class to the ESRIRasterPrintDrivers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ESRIRasterPrintDrivers.Register(System.String)">
<summary>Registers a class to the ESRIRasterPrintDrivers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ESRIRasterPrintDrivers.Unregister(System.String)">
<summary>Unregisters a class from the ESRIRasterPrintDrivers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ESRIRasterPrintDriversPropertyPages">
<summary>Registers or unregisters a class to the ESRIRasterPrintDriversPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ESRIRasterPrintDriversPropertyPages.Register(System.String)">
<summary>Registers a class to the ESRIRasterPrintDriversPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ESRIRasterPrintDriversPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the ESRIRasterPrintDriversPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ExporterDrivers">
<summary>Registers or unregisters a class to the ExporterDrivers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ExporterDrivers.Register(System.String)">
<summary>Registers a class to the ExporterDrivers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ExporterDrivers.Unregister(System.String)">
<summary>Unregisters a class from the ExporterDrivers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ExporterPropertyPages">
<summary>Registers or unregisters a class to the ExporterPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ExporterPropertyPages.Register(System.String)">
<summary>Registers a class to the ExporterPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ExporterPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the ExporterPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.Exports">
<summary>Registers or unregisters a class to the Exports component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.Exports.Register(System.String)">
<summary>Registers a class to the Exports component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.Exports.Unregister(System.String)">
<summary>Unregisters a class from the Exports component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FeatureClassPropertyPages">
<summary>Registers or unregisters a class to the FeatureClassPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureClassPropertyPages.Register(System.String)">
<summary>Registers a class to the FeatureClassPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureClassPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the FeatureClassPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionAnnotationTools">
<summary>Registers or unregisters a class to the FeatureConstructionAnnotationTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionAnnotationTools.Register(System.String)">
<summary>Registers a class to the FeatureConstructionAnnotationTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionAnnotationTools.Unregister(System.String)">
<summary>Unregisters a class from the FeatureConstructionAnnotationTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionCOGOLineTools">
<summary>Registers or unregisters a class to the FeatureConstructionCOGOLineTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionCOGOLineTools.Register(System.String)">
<summary>Registers a class to the FeatureConstructionCOGOLineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionCOGOLineTools.Unregister(System.String)">
<summary>Unregisters a class from the FeatureConstructionCOGOLineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionDimensionTools">
<summary>Registers or unregisters a class to the FeatureConstructionDimensionTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionDimensionTools.Register(System.String)">
<summary>Registers a class to the FeatureConstructionDimensionTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionDimensionTools.Unregister(System.String)">
<summary>Unregisters a class from the FeatureConstructionDimensionTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionGNLineTools">
<summary>Registers or unregisters a class to the FeatureConstructionGNLineTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionGNLineTools.Register(System.String)">
<summary>Registers a class to the FeatureConstructionGNLineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionGNLineTools.Unregister(System.String)">
<summary>Unregisters a class from the FeatureConstructionGNLineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionMultipatchTools">
<summary>Registers or unregisters a class to the FeatureConstructionMultipatchTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionMultipatchTools.Register(System.String)">
<summary>Registers a class to the FeatureConstructionMultipatchTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionMultipatchTools.Unregister(System.String)">
<summary>Unregisters a class from the FeatureConstructionMultipatchTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionMultipointTools">
<summary>Registers or unregisters a class to the FeatureConstructionMultipointTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionMultipointTools.Register(System.String)">
<summary>Registers a class to the FeatureConstructionMultipointTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionMultipointTools.Unregister(System.String)">
<summary>Unregisters a class from the FeatureConstructionMultipointTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionPointTools">
<summary>Registers or unregisters a class to the FeatureConstructionPointTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionPointTools.Register(System.String)">
<summary>Registers a class to the FeatureConstructionPointTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionPointTools.Unregister(System.String)">
<summary>Unregisters a class from the FeatureConstructionPointTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionPolygonTools">
<summary>Registers or unregisters a class to the FeatureConstructionPolygonTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionPolygonTools.Register(System.String)">
<summary>Registers a class to the FeatureConstructionPolygonTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionPolygonTools.Unregister(System.String)">
<summary>Unregisters a class from the FeatureConstructionPolygonTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionPolylineTools">
<summary>Registers or unregisters a class to the FeatureConstructionPolylineTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionPolylineTools.Register(System.String)">
<summary>Registers a class to the FeatureConstructionPolylineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionPolylineTools.Unregister(System.String)">
<summary>Unregisters a class from the FeatureConstructionPolylineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionTurnLineTools">
<summary>Registers or unregisters a class to the FeatureConstructionTurnLineTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionTurnLineTools.Register(System.String)">
<summary>Registers a class to the FeatureConstructionTurnLineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureConstructionTurnLineTools.Unregister(System.String)">
<summary>Unregisters a class from the FeatureConstructionTurnLineTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FeatureDatasetPropertyPages">
<summary>Registers or unregisters a class to the FeatureDatasetPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureDatasetPropertyPages.Register(System.String)">
<summary>Registers a class to the FeatureDatasetPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureDatasetPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the FeatureDatasetPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FeatureLargerThanToleranceErrorCommands">
<summary>Registers or unregisters a class to the FeatureLargerThanToleranceErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureLargerThanToleranceErrorCommands.Register(System.String)">
<summary>Registers a class to the FeatureLargerThanToleranceErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureLargerThanToleranceErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the FeatureLargerThanToleranceErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FeatureLayerSymbology">
<summary>Registers or unregisters a class to the FeatureLayerSymbology component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureLayerSymbology.Register(System.String)">
<summary>Registers a class to the FeatureLayerSymbology component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FeatureLayerSymbology.Unregister(System.String)">
<summary>Unregisters a class from the FeatureLayerSymbology component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FillSymbol">
<summary>Registers or unregisters a class to the FillSymbol component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FillSymbol.Register(System.String)">
<summary>Registers a class to the FillSymbol component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FillSymbol.Unregister(System.String)">
<summary>Unregisters a class from the FillSymbol component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FontMappingPropertyPages">
<summary>Registers or unregisters a class to the FontMappingPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FontMappingPropertyPages.Register(System.String)">
<summary>Registers a class to the FontMappingPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FontMappingPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the FontMappingPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.FrameElementPropertyPages">
<summary>Registers or unregisters a class to the FrameElementPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FrameElementPropertyPages.Register(System.String)">
<summary>Registers a class to the FrameElementPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.FrameElementPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the FrameElementPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GAEngineMethods">
<summary>Registers or unregisters a class to the GAEngineMethods component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GAEngineMethods.Register(System.String)">
<summary>Registers a class to the GAEngineMethods component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GAEngineMethods.Unregister(System.String)">
<summary>Unregisters a class from the GAEngineMethods component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GARenderers">
<summary>Registers or unregisters a class to the GARenderers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GARenderers.Register(System.String)">
<summary>Registers a class to the GARenderers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GARenderers.Unregister(System.String)">
<summary>Unregisters a class from the GARenderers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GARenderersPropertyPages">
<summary>Registers or unregisters a class to the GARenderersPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GARenderersPropertyPages.Register(System.String)">
<summary>Registers a class to the GARenderersPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GARenderersPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GARenderersPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GeoAnalysis">
<summary>Registers or unregisters a class to the GeoAnalysis component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeoAnalysis.Register(System.String)">
<summary>Registers a class to the GeoAnalysis component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeoAnalysis.Unregister(System.String)">
<summary>Unregisters a class from the GeoAnalysis component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GeodatabaseWorkspaceExtensions">
<summary>Registers or unregisters a class to the GeodatabaseWorkspaceExtensions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeodatabaseWorkspaceExtensions.Register(System.String)">
<summary>Registers a class to the GeodatabaseWorkspaceExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeodatabaseWorkspaceExtensions.Unregister(System.String)">
<summary>Unregisters a class from the GeodatabaseWorkspaceExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GeoElementTools">
<summary>Registers or unregisters a class to the GeoElementTools component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeoElementTools.Register(System.String)">
<summary>Registers a class to the GeoElementTools component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeoElementTools.Unregister(System.String)">
<summary>Unregisters a class from the GeoElementTools component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GeographicCoordSysPropertyPages">
<summary>Registers or unregisters a class to the GeographicCoordSysPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeographicCoordSysPropertyPages.Register(System.String)">
<summary>Registers a class to the GeographicCoordSysPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeographicCoordSysPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GeographicCoordSysPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GeometricEffect">
<summary>Registers or unregisters a class to the GeometricEffect component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeometricEffect.Register(System.String)">
<summary>Registers a class to the GeometricEffect component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeometricEffect.Unregister(System.String)">
<summary>Unregisters a class from the GeometricEffect component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GeometricNetworkPropertyPages">
<summary>Registers or unregisters a class to the GeometricNetworkPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeometricNetworkPropertyPages.Register(System.String)">
<summary>Registers a class to the GeometricNetworkPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeometricNetworkPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GeometricNetworkPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GeoObjectClassDescriptions">
<summary>Registers or unregisters a class to the GeoObjectClassDescriptions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeoObjectClassDescriptions.Register(System.String)">
<summary>Registers a class to the GeoObjectClassDescriptions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeoObjectClassDescriptions.Unregister(System.String)">
<summary>Unregisters a class from the GeoObjectClassDescriptions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GeoObjectClassExtensions">
<summary>Registers or unregisters a class to the GeoObjectClassExtensions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeoObjectClassExtensions.Register(System.String)">
<summary>Registers a class to the GeoObjectClassExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeoObjectClassExtensions.Unregister(System.String)">
<summary>Unregisters a class from the GeoObjectClassExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GeoObjects">
<summary>Registers or unregisters a class to the GeoObjects component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeoObjects.Register(System.String)">
<summary>Registers a class to the GeoObjects component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeoObjects.Unregister(System.String)">
<summary>Unregisters a class from the GeoObjects component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GeoRefSaveAsDlg">
<summary>Registers or unregisters a class to the GeoRefSaveAsDlg component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeoRefSaveAsDlg.Register(System.String)">
<summary>Registers a class to the GeoRefSaveAsDlg component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeoRefSaveAsDlg.Unregister(System.String)">
<summary>Unregisters a class from the GeoRefSaveAsDlg component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GeostatExtensions">
<summary>Registers or unregisters a class to the GeostatExtensions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeostatExtensions.Register(System.String)">
<summary>Registers a class to the GeostatExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GeostatExtensions.Unregister(System.String)">
<summary>Unregisters a class from the GeostatExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GISServersCommands">
<summary>Registers or unregisters a class to the GISServersCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GISServersCommands.Register(System.String)">
<summary>Registers a class to the GISServersCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GISServersCommands.Unregister(System.String)">
<summary>Unregisters a class from the GISServersCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GlobeAnimationTypes">
<summary>Registers or unregisters a class to the GlobeAnimationTypes component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GlobeAnimationTypes.Register(System.String)">
<summary>Registers a class to the GlobeAnimationTypes component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GlobeAnimationTypes.Unregister(System.String)">
<summary>Unregisters a class from the GlobeAnimationTypes component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GlobePropertyPages">
<summary>Registers or unregisters a class to the GlobePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GlobePropertyPages.Register(System.String)">
<summary>Registers a class to the GlobePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GlobePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GlobePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GMxBaseLayerPropertyPages">
<summary>Registers or unregisters a class to the GMxBaseLayerPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxBaseLayerPropertyPages.Register(System.String)">
<summary>Registers a class to the GMxBaseLayerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxBaseLayerPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GMxBaseLayerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GMxCommandBars">
<summary>Registers or unregisters a class to the GMxCommandBars component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxCommandBars.Register(System.String)">
<summary>Registers a class to the GMxCommandBars component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxCommandBars.Unregister(System.String)">
<summary>Unregisters a class from the GMxCommandBars component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GMxCommands">
<summary>Registers or unregisters a class to the GMxCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxCommands.Register(System.String)">
<summary>Registers a class to the GMxCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxCommands.Unregister(System.String)">
<summary>Unregisters a class from the GMxCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GMxContentsViews">
<summary>Registers or unregisters a class to the GMxContentsViews component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxContentsViews.Register(System.String)">
<summary>Registers a class to the GMxContentsViews component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxContentsViews.Unregister(System.String)">
<summary>Unregisters a class from the GMxContentsViews component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GMxContextAnalyzers">
<summary>Registers or unregisters a class to the GMxContextAnalyzers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxContextAnalyzers.Register(System.String)">
<summary>Registers a class to the GMxContextAnalyzers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxContextAnalyzers.Unregister(System.String)">
<summary>Unregisters a class from the GMxContextAnalyzers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GMxDockableWindows">
<summary>Registers or unregisters a class to the GMxDockableWindows component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxDockableWindows.Register(System.String)">
<summary>Registers a class to the GMxDockableWindows component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxDockableWindows.Unregister(System.String)">
<summary>Unregisters a class from the GMxDockableWindows component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GMxExtensions">
<summary>Registers or unregisters a class to the GMxExtensions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxExtensions.Register(System.String)">
<summary>Registers a class to the GMxExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxExtensions.Unregister(System.String)">
<summary>Unregisters a class from the GMxExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GMxExtensionsJIT">
<summary>Registers or unregisters a class to the GMxExtensionsJIT component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxExtensionsJIT.Register(System.String)">
<summary>Registers a class to the GMxExtensionsJIT component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxExtensionsJIT.Unregister(System.String)">
<summary>Unregisters a class from the GMxExtensionsJIT component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GMxFinders">
<summary>Registers or unregisters a class to the GMxFinders component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxFinders.Register(System.String)">
<summary>Registers a class to the GMxFinders component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxFinders.Unregister(System.String)">
<summary>Unregisters a class from the GMxFinders component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GMxLayerPropertyPages">
<summary>Registers or unregisters a class to the GMxLayerPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxLayerPropertyPages.Register(System.String)">
<summary>Registers a class to the GMxLayerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxLayerPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GMxLayerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GMxOptionsPropertyPages">
<summary>Registers or unregisters a class to the GMxOptionsPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxOptionsPropertyPages.Register(System.String)">
<summary>Registers a class to the GMxOptionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxOptionsPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GMxOptionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GMxPalettes">
<summary>Registers or unregisters a class to the GMxPalettes component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxPalettes.Register(System.String)">
<summary>Registers a class to the GMxPalettes component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxPalettes.Unregister(System.String)">
<summary>Unregisters a class from the GMxPalettes component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GMxPropertyPages">
<summary>Registers or unregisters a class to the GMxPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxPropertyPages.Register(System.String)">
<summary>Registers a class to the GMxPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GMxPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GMxRootObjects">
<summary>Registers or unregisters a class to the GMxRootObjects component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxRootObjects.Register(System.String)">
<summary>Registers a class to the GMxRootObjects component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GMxRootObjects.Unregister(System.String)">
<summary>Unregisters a class from the GMxRootObjects component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GNEditorPropertyPages">
<summary>Registers or unregisters a class to the GNEditorPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GNEditorPropertyPages.Register(System.String)">
<summary>Registers a class to the GNEditorPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GNEditorPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GNEditorPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GPDataTypeFactories">
<summary>Registers or unregisters a class to the GPDataTypeFactories component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPDataTypeFactories.Register(System.String)">
<summary>Registers a class to the GPDataTypeFactories component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPDataTypeFactories.Unregister(System.String)">
<summary>Unregisters a class from the GPDataTypeFactories component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GPFileTypes">
<summary>Registers or unregisters a class to the GPFileTypes component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPFileTypes.Register(System.String)">
<summary>Registers a class to the GPFileTypes component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPFileTypes.Unregister(System.String)">
<summary>Unregisters a class from the GPFileTypes component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GPFunctionFactories">
<summary>Registers or unregisters a class to the GPFunctionFactories component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPFunctionFactories.Register(System.String)">
<summary>Registers a class to the GPFunctionFactories component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPFunctionFactories.Unregister(System.String)">
<summary>Unregisters a class from the GPFunctionFactories component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GPFunctionFactoriesPrivate">
<summary>Registers or unregisters a class to the GPFunctionFactoriesPrivate component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPFunctionFactoriesPrivate.Register(System.String)">
<summary>Registers a class to the GPFunctionFactoriesPrivate component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPFunctionFactoriesPrivate.Unregister(System.String)">
<summary>Unregisters a class from the GPFunctionFactoriesPrivate component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GPToolboxMetadataPropertyPages">
<summary>Registers or unregisters a class to the GPToolboxMetadataPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPToolboxMetadataPropertyPages.Register(System.String)">
<summary>Registers a class to the GPToolboxMetadataPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPToolboxMetadataPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GPToolboxMetadataPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GPToolboxPropertyPages">
<summary>Registers or unregisters a class to the GPToolboxPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPToolboxPropertyPages.Register(System.String)">
<summary>Registers a class to the GPToolboxPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPToolboxPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GPToolboxPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GPToolExtensionFactories">
<summary>Registers or unregisters a class to the GPToolExtensionFactories component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPToolExtensionFactories.Register(System.String)">
<summary>Registers a class to the GPToolExtensionFactories component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPToolExtensionFactories.Unregister(System.String)">
<summary>Unregisters a class from the GPToolExtensionFactories component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GPToolMetadataPropertyPages">
<summary>Registers or unregisters a class to the GPToolMetadataPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPToolMetadataPropertyPages.Register(System.String)">
<summary>Registers a class to the GPToolMetadataPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPToolMetadataPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GPToolMetadataPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GPToolPropertyPages">
<summary>Registers or unregisters a class to the GPToolPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPToolPropertyPages.Register(System.String)">
<summary>Registers a class to the GPToolPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GPToolPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GPToolPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GraphicSnapAgents">
<summary>Registers or unregisters a class to the GraphicSnapAgents component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GraphicSnapAgents.Register(System.String)">
<summary>Registers a class to the GraphicSnapAgents component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GraphicSnapAgents.Unregister(System.String)">
<summary>Unregisters a class from the GraphicSnapAgents component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GridLabels">
<summary>Registers or unregisters a class to the GridLabels component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GridLabels.Register(System.String)">
<summary>Registers a class to the GridLabels component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GridLabels.Unregister(System.String)">
<summary>Unregisters a class from the GridLabels component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxAGSFolderContextMenuCommands">
<summary>Registers or unregisters a class to the GxAGSFolderContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSFolderContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxAGSFolderContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSFolderContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxAGSFolderContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxAGSGeoDataServerContextMenuCommands">
<summary>Registers or unregisters a class to the GxAGSGeoDataServerContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSGeoDataServerContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxAGSGeoDataServerContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSGeoDataServerContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxAGSGeoDataServerContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxAGSGeometryContextMenuCommands">
<summary>Registers or unregisters a class to the GxAGSGeometryContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSGeometryContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxAGSGeometryContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSGeometryContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxAGSGeometryContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxAGSGeoprocessingContextMenuCommands">
<summary>Registers or unregisters a class to the GxAGSGeoprocessingContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSGeoprocessingContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxAGSGeoprocessingContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSGeoprocessingContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxAGSGeoprocessingContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxAGSGlobeContextMenuCommands">
<summary>Registers or unregisters a class to the GxAGSGlobeContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSGlobeContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxAGSGlobeContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSGlobeContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxAGSGlobeContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxAGSImageContextMenuCommands">
<summary>Registers or unregisters a class to the GxAGSImageContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSImageContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxAGSImageContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSImageContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxAGSImageContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxAGSLocatorContextMenuCommands">
<summary>Registers or unregisters a class to the GxAGSLocatorContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSLocatorContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxAGSLocatorContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSLocatorContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxAGSLocatorContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxAGSMapContextMenuCommands">
<summary>Registers or unregisters a class to the GxAGSMapContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSMapContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxAGSMapContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSMapContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxAGSMapContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxAGSMobileContextMenuCommands">
<summary>Registers or unregisters a class to the GxAGSMobileContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSMobileContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxAGSMobileContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSMobileContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxAGSMobileContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxAGSMultiSelAdminContextMenuCommands">
<summary>Registers or unregisters a class to the GxAGSMultiSelAdminContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSMultiSelAdminContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxAGSMultiSelAdminContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSMultiSelAdminContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxAGSMultiSelAdminContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxAGSMultiSelContextMenuCommands">
<summary>Registers or unregisters a class to the GxAGSMultiSelContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSMultiSelContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxAGSMultiSelContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSMultiSelContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxAGSMultiSelContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxAGSObjects">
<summary>Registers or unregisters a class to the GxAGSObjects component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSObjects.Register(System.String)">
<summary>Registers a class to the GxAGSObjects component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxAGSObjects.Unregister(System.String)">
<summary>Unregisters a class from the GxAGSObjects component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxArchivingMenuCommands">
<summary>Registers or unregisters a class to the GxArchivingMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxArchivingMenuCommands.Register(System.String)">
<summary>Registers a class to the GxArchivingMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxArchivingMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxArchivingMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxArcViewExportFeatureClassFilters">
<summary>Registers or unregisters a class to the GxArcViewExportFeatureClassFilters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxArcViewExportFeatureClassFilters.Register(System.String)">
<summary>Registers a class to the GxArcViewExportFeatureClassFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxArcViewExportFeatureClassFilters.Unregister(System.String)">
<summary>Unregisters a class from the GxArcViewExportFeatureClassFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxArcViewExportTableFilters">
<summary>Registers or unregisters a class to the GxArcViewExportTableFilters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxArcViewExportTableFilters.Register(System.String)">
<summary>Registers a class to the GxArcViewExportTableFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxArcViewExportTableFilters.Unregister(System.String)">
<summary>Unregisters a class from the GxArcViewExportTableFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCadastralFabricContextMenuCommands">
<summary>Registers or unregisters a class to the GxCadastralFabricContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadastralFabricContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxCadastralFabricContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadastralFabricContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCadastralFabricContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCadDataContextMenuCommands">
<summary>Registers or unregisters a class to the GxCadDataContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadDataContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxCadDataContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadDataContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCadDataContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCadDrawingContextMenuCommands">
<summary>Registers or unregisters a class to the GxCadDrawingContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadDrawingContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxCadDrawingContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadDrawingContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCadDrawingContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCadDrawingExportMenuCommands">
<summary>Registers or unregisters a class to the GxCadDrawingExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadDrawingExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxCadDrawingExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadDrawingExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCadDrawingExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCadFeatureClassContextMenuCommands">
<summary>Registers or unregisters a class to the GxCadFeatureClassContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadFeatureClassContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxCadFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadFeatureClassContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCadFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCadFeatureClassExportMenuCommands">
<summary>Registers or unregisters a class to the GxCadFeatureClassExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadFeatureClassExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxCadFeatureClassExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadFeatureClassExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCadFeatureClassExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCadFeatureContextMenuCommands">
<summary>Registers or unregisters a class to the GxCadFeatureContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadFeatureContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxCadFeatureContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadFeatureContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCadFeatureContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCadFeatureExportMenuCommands">
<summary>Registers or unregisters a class to the GxCadFeatureExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadFeatureExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxCadFeatureExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCadFeatureExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCadFeatureExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCatalogContextMenuCommands">
<summary>Registers or unregisters a class to the GxCatalogContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCatalogContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxCatalogContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCatalogContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCatalogContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCatalogPropertyPages">
<summary>Registers or unregisters a class to the GxCatalogPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCatalogPropertyPages.Register(System.String)">
<summary>Registers a class to the GxCatalogPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCatalogPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GxCatalogPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCommandBars">
<summary>Registers or unregisters a class to the GxCommandBars component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCommandBars.Register(System.String)">
<summary>Registers a class to the GxCommandBars component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCommandBars.Unregister(System.String)">
<summary>Unregisters a class from the GxCommandBars component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCommands">
<summary>Registers or unregisters a class to the GxCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCommands.Register(System.String)">
<summary>Registers a class to the GxCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCoverageContextMenuCommands">
<summary>Registers or unregisters a class to the GxCoverageContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCoverageContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxCoverageContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCoverageContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCoverageContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCoverageExportMenuCommands">
<summary>Registers or unregisters a class to the GxCoverageExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCoverageExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxCoverageExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCoverageExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCoverageExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCoverageFeatureClassContextMenuCommands">
<summary>Registers or unregisters a class to the GxCoverageFeatureClassContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCoverageFeatureClassContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxCoverageFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCoverageFeatureClassContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCoverageFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCoverageFeatureClassExportMenuCommands">
<summary>Registers or unregisters a class to the GxCoverageFeatureClassExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCoverageFeatureClassExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxCoverageFeatureClassExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCoverageFeatureClassExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCoverageFeatureClassExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxCoverageNewMenuCommands">
<summary>Registers or unregisters a class to the GxCoverageNewMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCoverageNewMenuCommands.Register(System.String)">
<summary>Registers a class to the GxCoverageNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxCoverageNewMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxCoverageNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseContextMenuCommands">
<summary>Registers or unregisters a class to the GxDatabaseContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxDatabaseContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxDatabaseContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseExportMenuCommands">
<summary>Registers or unregisters a class to the GxDatabaseExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxDatabaseExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxDatabaseExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseExtensions">
<summary>Registers or unregisters a class to the GxDatabaseExtensions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseExtensions.Register(System.String)">
<summary>Registers a class to the GxDatabaseExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseExtensions.Unregister(System.String)">
<summary>Unregisters a class from the GxDatabaseExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseImportMenuCommands">
<summary>Registers or unregisters a class to the GxDatabaseImportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseImportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxDatabaseImportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseImportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxDatabaseImportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseNewMenuCommands">
<summary>Registers or unregisters a class to the GxDatabaseNewMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseNewMenuCommands.Register(System.String)">
<summary>Registers a class to the GxDatabaseNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDatabaseNewMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxDatabaseNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxDataGraphContextMenuCommands">
<summary>Registers or unregisters a class to the GxDataGraphContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDataGraphContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxDataGraphContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDataGraphContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxDataGraphContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxDatasetContextMenuCommands">
<summary>Registers or unregisters a class to the GxDatasetContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDatasetContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDatasetContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxDialogObjectFilters">
<summary>Registers or unregisters a class to the GxDialogObjectFilters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDialogObjectFilters.Register(System.String)">
<summary>Registers a class to the GxDialogObjectFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDialogObjectFilters.Unregister(System.String)">
<summary>Unregisters a class from the GxDialogObjectFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxDiskConnectionContextMenuCommands">
<summary>Registers or unregisters a class to the GxDiskConnectionContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDiskConnectionContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxDiskConnectionContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDiskConnectionContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxDiskConnectionContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxDockableWindows">
<summary>Registers or unregisters a class to the GxDockableWindows component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDockableWindows.Register(System.String)">
<summary>Registers a class to the GxDockableWindows component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxDockableWindows.Unregister(System.String)">
<summary>Unregisters a class from the GxDockableWindows component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxEnabledWorkspaceFactories">
<summary>Registers or unregisters a class to the GxEnabledWorkspaceFactories component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnabledWorkspaceFactories.Register(System.String)">
<summary>Registers a class to the GxEnabledWorkspaceFactories component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnabledWorkspaceFactories.Unregister(System.String)">
<summary>Unregisters a class from the GxEnabledWorkspaceFactories component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseFeatureClassContextMenuCommands">
<summary>Registers or unregisters a class to the GxEnterpriseFeatureClassContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseFeatureClassContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxEnterpriseFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseFeatureClassContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxEnterpriseFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseFeatureClassContextMenuCommandsAV">
<summary>Registers or unregisters a class to the GxEnterpriseFeatureClassContextMenuCommandsAV component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseFeatureClassContextMenuCommandsAV.Register(System.String)">
<summary>Registers a class to the GxEnterpriseFeatureClassContextMenuCommandsAV component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseFeatureClassContextMenuCommandsAV.Unregister(System.String)">
<summary>Unregisters a class from the GxEnterpriseFeatureClassContextMenuCommandsAV component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseFeatureDatasetContextMenuCommands">
<summary>Registers or unregisters a class to the GxEnterpriseFeatureDatasetContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseFeatureDatasetContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxEnterpriseFeatureDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseFeatureDatasetContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxEnterpriseFeatureDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseMosaicDefinitionContextMenuCommands">
<summary>Registers or unregisters a class to the GxEnterpriseMosaicDefinitionContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseMosaicDefinitionContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxEnterpriseMosaicDefinitionContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseMosaicDefinitionContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxEnterpriseMosaicDefinitionContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseRasterBandContextMenuCommands">
<summary>Registers or unregisters a class to the GxEnterpriseRasterBandContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseRasterBandContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxEnterpriseRasterBandContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseRasterBandContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxEnterpriseRasterBandContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseRasterDatasetContextMenuCommands">
<summary>Registers or unregisters a class to the GxEnterpriseRasterDatasetContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseRasterDatasetContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxEnterpriseRasterDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseRasterDatasetContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxEnterpriseRasterDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseRelationshipClassContextMenuCommands">
<summary>Registers or unregisters a class to the GxEnterpriseRelationshipClassContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseRelationshipClassContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxEnterpriseRelationshipClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseRelationshipClassContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxEnterpriseRelationshipClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseStandaloneFeatureClassContextMenuCommands">
<summary>Registers or unregisters a class to the GxEnterpriseStandaloneFeatureClassContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseStandaloneFeatureClassContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxEnterpriseStandaloneFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseStandaloneFeatureClassContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxEnterpriseStandaloneFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseStandaloneFeatureClassContextMenuCommandsAV">
<summary>Registers or unregisters a class to the GxEnterpriseStandaloneFeatureClassContextMenuCommandsAV component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseStandaloneFeatureClassContextMenuCommandsAV.Register(System.String)">
<summary>Registers a class to the GxEnterpriseStandaloneFeatureClassContextMenuCommandsAV component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseStandaloneFeatureClassContextMenuCommandsAV.Unregister(System.String)">
<summary>Unregisters a class from the GxEnterpriseStandaloneFeatureClassContextMenuCommandsAV component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseTableContextMenuCommands">
<summary>Registers or unregisters a class to the GxEnterpriseTableContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseTableContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxEnterpriseTableContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseTableContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxEnterpriseTableContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseTableContextMenuCommandsAV">
<summary>Registers or unregisters a class to the GxEnterpriseTableContextMenuCommandsAV component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseTableContextMenuCommandsAV.Register(System.String)">
<summary>Registers a class to the GxEnterpriseTableContextMenuCommandsAV component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseTableContextMenuCommandsAV.Unregister(System.String)">
<summary>Unregisters a class from the GxEnterpriseTableContextMenuCommandsAV component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseToolboxContextMenuCommands">
<summary>Registers or unregisters a class to the GxEnterpriseToolboxContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseToolboxContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxEnterpriseToolboxContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxEnterpriseToolboxContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxEnterpriseToolboxContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxExportFeatureClassFilters">
<summary>Registers or unregisters a class to the GxExportFeatureClassFilters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxExportFeatureClassFilters.Register(System.String)">
<summary>Registers a class to the GxExportFeatureClassFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxExportFeatureClassFilters.Unregister(System.String)">
<summary>Unregisters a class from the GxExportFeatureClassFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxExportTableFilters">
<summary>Registers or unregisters a class to the GxExportTableFilters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxExportTableFilters.Register(System.String)">
<summary>Registers a class to the GxExportTableFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxExportTableFilters.Unregister(System.String)">
<summary>Unregisters a class from the GxExportTableFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxExtensions">
<summary>Registers or unregisters a class to the GxExtensions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxExtensions.Register(System.String)">
<summary>Registers a class to the GxExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxExtensions.Unregister(System.String)">
<summary>Unregisters a class from the GxExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxExtensionsJIT">
<summary>Registers or unregisters a class to the GxExtensionsJIT component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxExtensionsJIT.Register(System.String)">
<summary>Registers a class to the GxExtensionsJIT component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxExtensionsJIT.Unregister(System.String)">
<summary>Unregisters a class from the GxExtensionsJIT component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxExtensionToolbar">
<summary>Registers or unregisters a class to the GxExtensionToolbar component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxExtensionToolbar.Register(System.String)">
<summary>Registers a class to the GxExtensionToolbar component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxExtensionToolbar.Unregister(System.String)">
<summary>Unregisters a class from the GxExtensionToolbar component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxFeatureClassContextMenuCommands">
<summary>Registers or unregisters a class to the GxFeatureClassContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFeatureClassContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFeatureClassContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxFeatureClassExportMenuCommands">
<summary>Registers or unregisters a class to the GxFeatureClassExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFeatureClassExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxFeatureClassExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFeatureClassExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxFeatureClassExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxFeatureDatasetContextMenuCommands">
<summary>Registers or unregisters a class to the GxFeatureDatasetContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFeatureDatasetContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxFeatureDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFeatureDatasetContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxFeatureDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxFeatureDatasetExportMenuCommands">
<summary>Registers or unregisters a class to the GxFeatureDatasetExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFeatureDatasetExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxFeatureDatasetExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFeatureDatasetExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxFeatureDatasetExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxFeatureDatasetImportMenuCommands">
<summary>Registers or unregisters a class to the GxFeatureDatasetImportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFeatureDatasetImportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxFeatureDatasetImportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFeatureDatasetImportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxFeatureDatasetImportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxFeatureDatasetNewMenuCommands">
<summary>Registers or unregisters a class to the GxFeatureDatasetNewMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFeatureDatasetNewMenuCommands.Register(System.String)">
<summary>Registers a class to the GxFeatureDatasetNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFeatureDatasetNewMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxFeatureDatasetNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxFileContextMenuCommands">
<summary>Registers or unregisters a class to the GxFileContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFileContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxFileContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFileContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxFileContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxFilterFeatureClasses">
<summary>Registers or unregisters a class to the GxFilterFeatureClasses component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFilterFeatureClasses.Register(System.String)">
<summary>Registers a class to the GxFilterFeatureClasses component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFilterFeatureClasses.Unregister(System.String)">
<summary>Unregisters a class from the GxFilterFeatureClasses component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxFilterFeatureDatasets">
<summary>Registers or unregisters a class to the GxFilterFeatureDatasets component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFilterFeatureDatasets.Register(System.String)">
<summary>Registers a class to the GxFilterFeatureDatasets component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFilterFeatureDatasets.Unregister(System.String)">
<summary>Unregisters a class from the GxFilterFeatureDatasets component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxFilterTables">
<summary>Registers or unregisters a class to the GxFilterTables component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFilterTables.Register(System.String)">
<summary>Registers a class to the GxFilterTables component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFilterTables.Unregister(System.String)">
<summary>Unregisters a class from the GxFilterTables component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxFolderContextMenuCommands">
<summary>Registers or unregisters a class to the GxFolderContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFolderContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxFolderContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFolderContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxFolderContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxFolderNewMenuCommands">
<summary>Registers or unregisters a class to the GxFolderNewMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFolderNewMenuCommands.Register(System.String)">
<summary>Registers a class to the GxFolderNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFolderNewMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxFolderNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxFolderNewMenuCommandsAV">
<summary>Registers or unregisters a class to the GxFolderNewMenuCommandsAV component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFolderNewMenuCommandsAV.Register(System.String)">
<summary>Registers a class to the GxFolderNewMenuCommandsAV component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxFolderNewMenuCommandsAV.Unregister(System.String)">
<summary>Unregisters a class from the GxFolderNewMenuCommandsAV component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxGeometricNetworkContextMenuCommands">
<summary>Registers or unregisters a class to the GxGeometricNetworkContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxGeometricNetworkContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxGeometricNetworkContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxGeometricNetworkContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxGeometricNetworkContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxGlobeContextMenuCommands">
<summary>Registers or unregisters a class to the GxGlobeContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxGlobeContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxGlobeContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxGlobeContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxGlobeContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxGlobePropertyPages">
<summary>Registers or unregisters a class to the GxGlobePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxGlobePropertyPages.Register(System.String)">
<summary>Registers a class to the GxGlobePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxGlobePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GxGlobePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxGridContextMenuCommands">
<summary>Registers or unregisters a class to the GxGridContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxGridContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxGridContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxGridContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxGridContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxInfoTableContextMenuCommands">
<summary>Registers or unregisters a class to the GxInfoTableContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxInfoTableContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxInfoTableContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxInfoTableContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxInfoTableContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxInfoTableExportMenuCommands">
<summary>Registers or unregisters a class to the GxInfoTableExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxInfoTableExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxInfoTableExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxInfoTableExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxInfoTableExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxInfoTableToFeatureClassMenuCommands">
<summary>Registers or unregisters a class to the GxInfoTableToFeatureClassMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxInfoTableToFeatureClassMenuCommands.Register(System.String)">
<summary>Registers a class to the GxInfoTableToFeatureClassMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxInfoTableToFeatureClassMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxInfoTableToFeatureClassMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxISCDefContextMenuCommands">
<summary>Registers or unregisters a class to the GxISCDefContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxISCDefContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxISCDefContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxISCDefContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxISCDefContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxLayerContextMenuCommands">
<summary>Registers or unregisters a class to the GxLayerContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxLayerContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxLayerContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxLayerContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxLayerContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxLayerFilters">
<summary>Registers or unregisters a class to the GxLayerFilters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxLayerFilters.Register(System.String)">
<summary>Registers a class to the GxLayerFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxLayerFilters.Unregister(System.String)">
<summary>Unregisters a class from the GxLayerFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxLocatorContextMenuCommands">
<summary>Registers or unregisters a class to the GxLocatorContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxLocatorContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxLocatorContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxLocatorContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxLocatorContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxLocatorFolderContextMenuCommands">
<summary>Registers or unregisters a class to the GxLocatorFolderContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxLocatorFolderContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxLocatorFolderContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxLocatorFolderContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxLocatorFolderContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxLocatorMenus">
<summary>Registers or unregisters a class to the GxLocatorMenus component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxLocatorMenus.Register(System.String)">
<summary>Registers a class to the GxLocatorMenus component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxLocatorMenus.Unregister(System.String)">
<summary>Unregisters a class from the GxLocatorMenus component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxMapContextMenuCommands">
<summary>Registers or unregisters a class to the GxMapContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMapContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxMapContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMapContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxMapContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxMapPropertyPages">
<summary>Registers or unregisters a class to the GxMapPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMapPropertyPages.Register(System.String)">
<summary>Registers a class to the GxMapPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMapPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GxMapPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxMetadataExporter">
<summary>Registers or unregisters a class to the GxMetadataExporter component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMetadataExporter.Register(System.String)">
<summary>Registers a class to the GxMetadataExporter component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMetadataExporter.Unregister(System.String)">
<summary>Unregisters a class from the GxMetadataExporter component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxMetadataImporter">
<summary>Registers or unregisters a class to the GxMetadataImporter component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMetadataImporter.Register(System.String)">
<summary>Registers a class to the GxMetadataImporter component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMetadataImporter.Unregister(System.String)">
<summary>Unregisters a class from the GxMetadataImporter component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxMosaicDefinitionContextMenuCommands">
<summary>Registers or unregisters a class to the GxMosaicDefinitionContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMosaicDefinitionContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxMosaicDefinitionContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMosaicDefinitionContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxMosaicDefinitionContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxMSDFileContextMenuCommands">
<summary>Registers or unregisters a class to the GxMSDFileContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMSDFileContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxMSDFileContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMSDFileContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxMSDFileContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxMSDFilePropertyPages">
<summary>Registers or unregisters a class to the GxMSDFilePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMSDFilePropertyPages.Register(System.String)">
<summary>Registers a class to the GxMSDFilePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMSDFilePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GxMSDFilePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxMultipleSelectionContextMenuCommands">
<summary>Registers or unregisters a class to the GxMultipleSelectionContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMultipleSelectionContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxMultipleSelectionContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMultipleSelectionContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxMultipleSelectionContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxMultipleSelectionExportMenuCommands">
<summary>Registers or unregisters a class to the GxMultipleSelectionExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMultipleSelectionExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxMultipleSelectionExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxMultipleSelectionExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxMultipleSelectionExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxNetworkDatasetContextMenuCommands">
<summary>Registers or unregisters a class to the GxNetworkDatasetContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxNetworkDatasetContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxNetworkDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxNetworkDatasetContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxNetworkDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxObjectFactory">
<summary>Registers or unregisters a class to the GxObjectFactory component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxObjectFactory.Register(System.String)">
<summary>Registers a class to the GxObjectFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxObjectFactory.Unregister(System.String)">
<summary>Unregisters a class from the GxObjectFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxObjectFilters">
<summary>Registers or unregisters a class to the GxObjectFilters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxObjectFilters.Register(System.String)">
<summary>Registers a class to the GxObjectFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxObjectFilters.Unregister(System.String)">
<summary>Unregisters a class from the GxObjectFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxOleDBDatabaseContextMenuCommands">
<summary>Registers or unregisters a class to the GxOleDBDatabaseContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxOleDBDatabaseContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxOleDBDatabaseContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxOleDBDatabaseContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxOleDBDatabaseContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxOleDBTableContextMenuCommands">
<summary>Registers or unregisters a class to the GxOleDBTableContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxOleDBTableContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxOleDBTableContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxOleDBTableContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxOleDBTableContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxPalettes">
<summary>Registers or unregisters a class to the GxPalettes component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPalettes.Register(System.String)">
<summary>Registers a class to the GxPalettes component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPalettes.Unregister(System.String)">
<summary>Unregisters a class from the GxPalettes component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxPCCoverageContextMenuCommands">
<summary>Registers or unregisters a class to the GxPCCoverageContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPCCoverageContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxPCCoverageContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPCCoverageContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxPCCoverageContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxPCCoverageFeatureClassContextMenuCommands">
<summary>Registers or unregisters a class to the GxPCCoverageFeatureClassContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPCCoverageFeatureClassContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxPCCoverageFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPCCoverageFeatureClassContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxPCCoverageFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxPMFMapContextMenuCommands">
<summary>Registers or unregisters a class to the GxPMFMapContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPMFMapContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxPMFMapContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPMFMapContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxPMFMapContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxPMFMapPropertyPages">
<summary>Registers or unregisters a class to the GxPMFMapPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPMFMapPropertyPages.Register(System.String)">
<summary>Registers a class to the GxPMFMapPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPMFMapPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GxPMFMapPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxPre70CoverageContextMenuCommands">
<summary>Registers or unregisters a class to the GxPre70CoverageContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPre70CoverageContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxPre70CoverageContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPre70CoverageContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxPre70CoverageContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxPreviews">
<summary>Registers or unregisters a class to the GxPreviews component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPreviews.Register(System.String)">
<summary>Registers a class to the GxPreviews component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPreviews.Unregister(System.String)">
<summary>Unregisters a class from the GxPreviews component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxPrjFileContextMenuCommands">
<summary>Registers or unregisters a class to the GxPrjFileContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPrjFileContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxPrjFileContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxPrjFileContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxPrjFileContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxRasterBandContextMenuCommands">
<summary>Registers or unregisters a class to the GxRasterBandContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRasterBandContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxRasterBandContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRasterBandContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxRasterBandContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxRasterCatalogContextMenuCommands">
<summary>Registers or unregisters a class to the GxRasterCatalogContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRasterCatalogContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxRasterCatalogContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRasterCatalogContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxRasterCatalogContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxRasterCatalogFilters">
<summary>Registers or unregisters a class to the GxRasterCatalogFilters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRasterCatalogFilters.Register(System.String)">
<summary>Registers a class to the GxRasterCatalogFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRasterCatalogFilters.Unregister(System.String)">
<summary>Unregisters a class from the GxRasterCatalogFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxRasterCatalogItemContextMenuCommands">
<summary>Registers or unregisters a class to the GxRasterCatalogItemContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRasterCatalogItemContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxRasterCatalogItemContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRasterCatalogItemContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxRasterCatalogItemContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxRasterCatalogViews">
<summary>Registers or unregisters a class to the GxRasterCatalogViews component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRasterCatalogViews.Register(System.String)">
<summary>Registers a class to the GxRasterCatalogViews component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRasterCatalogViews.Unregister(System.String)">
<summary>Unregisters a class from the GxRasterCatalogViews component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxRasterDatasetContextMenuCommands">
<summary>Registers or unregisters a class to the GxRasterDatasetContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRasterDatasetContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxRasterDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRasterDatasetContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxRasterDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyFeatureClassContextMenuCommands">
<summary>Registers or unregisters a class to the GxReadOnlyFeatureClassContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyFeatureClassContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxReadOnlyFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyFeatureClassContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxReadOnlyFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyFeatureDatasetContextMenuCommands">
<summary>Registers or unregisters a class to the GxReadOnlyFeatureDatasetContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyFeatureDatasetContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxReadOnlyFeatureDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyFeatureDatasetContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxReadOnlyFeatureDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyNetworkContextMenuCommands">
<summary>Registers or unregisters a class to the GxReadOnlyNetworkContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyNetworkContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxReadOnlyNetworkContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyNetworkContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxReadOnlyNetworkContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyStandaloneFeatureClassContextMenuCommands">
<summary>Registers or unregisters a class to the GxReadOnlyStandaloneFeatureClassContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyStandaloneFeatureClassContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxReadOnlyStandaloneFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyStandaloneFeatureClassContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxReadOnlyStandaloneFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyTableContextMenuCommands">
<summary>Registers or unregisters a class to the GxReadOnlyTableContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyTableContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxReadOnlyTableContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxReadOnlyTableContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxReadOnlyTableContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxRelationshipClassContextMenuCommands">
<summary>Registers or unregisters a class to the GxRelationshipClassContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRelationshipClassContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxRelationshipClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRelationshipClassContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxRelationshipClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxRemoteDatabaseContextMenuCommands">
<summary>Registers or unregisters a class to the GxRemoteDatabaseContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRemoteDatabaseContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxRemoteDatabaseContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRemoteDatabaseContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxRemoteDatabaseContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxRemoteDatabaseFolderContextMenuCommands">
<summary>Registers or unregisters a class to the GxRemoteDatabaseFolderContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRemoteDatabaseFolderContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxRemoteDatabaseFolderContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRemoteDatabaseFolderContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxRemoteDatabaseFolderContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxRootObjects">
<summary>Registers or unregisters a class to the GxRootObjects component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRootObjects.Register(System.String)">
<summary>Registers a class to the GxRootObjects component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxRootObjects.Unregister(System.String)">
<summary>Unregisters a class from the GxRootObjects component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxSceneContextMenuCommands">
<summary>Registers or unregisters a class to the GxSceneContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSceneContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxSceneContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSceneContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxSceneContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxScenePropertyPages">
<summary>Registers or unregisters a class to the GxScenePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxScenePropertyPages.Register(System.String)">
<summary>Registers a class to the GxScenePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxScenePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GxScenePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDatasetContextMenuCommands">
<summary>Registers or unregisters a class to the GxSchematicDatasetContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDatasetContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxSchematicDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDatasetContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxSchematicDatasetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDatasetExportMenuCommands">
<summary>Registers or unregisters a class to the GxSchematicDatasetExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDatasetExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxSchematicDatasetExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDatasetExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxSchematicDatasetExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDatasetNewMenuCommands">
<summary>Registers or unregisters a class to the GxSchematicDatasetNewMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDatasetNewMenuCommands.Register(System.String)">
<summary>Registers a class to the GxSchematicDatasetNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDatasetNewMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxSchematicDatasetNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDiagramContextMenuCommands">
<summary>Registers or unregisters a class to the GxSchematicDiagramContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDiagramContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxSchematicDiagramContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDiagramContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxSchematicDiagramContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDiagramExportMenuCommands">
<summary>Registers or unregisters a class to the GxSchematicDiagramExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDiagramExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxSchematicDiagramExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSchematicDiagramExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxSchematicDiagramExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxSchematicFolderContextMenuCommands">
<summary>Registers or unregisters a class to the GxSchematicFolderContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSchematicFolderContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxSchematicFolderContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSchematicFolderContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxSchematicFolderContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxSchematicFolderNewMenuCommands">
<summary>Registers or unregisters a class to the GxSchematicFolderNewMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSchematicFolderNewMenuCommands.Register(System.String)">
<summary>Registers a class to the GxSchematicFolderNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSchematicFolderNewMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxSchematicFolderNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxSDCFeatureClassExportMenuCommands">
<summary>Registers or unregisters a class to the GxSDCFeatureClassExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSDCFeatureClassExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxSDCFeatureClassExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSDCFeatureClassExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxSDCFeatureClassExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxSDCTableExportMenuCommands">
<summary>Registers or unregisters a class to the GxSDCTableExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSDCTableExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxSDCTableExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSDCTableExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxSDCTableExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxSearchEngines">
<summary>Registers or unregisters a class to the GxSearchEngines component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSearchEngines.Register(System.String)">
<summary>Registers a class to the GxSearchEngines component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSearchEngines.Unregister(System.String)">
<summary>Unregisters a class from the GxSearchEngines component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxShapefileFeatureClassContextMenuCommands">
<summary>Registers or unregisters a class to the GxShapefileFeatureClassContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxShapefileFeatureClassContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxShapefileFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxShapefileFeatureClassContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxShapefileFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxShapefileFeatureClassExportMenuCommands">
<summary>Registers or unregisters a class to the GxShapefileFeatureClassExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxShapefileFeatureClassExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxShapefileFeatureClassExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxShapefileFeatureClassExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxShapefileFeatureClassExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxShapefileTableContextMenuCommands">
<summary>Registers or unregisters a class to the GxShapefileTableContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxShapefileTableContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxShapefileTableContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxShapefileTableContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxShapefileTableContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxShapefileTableExportMenuCommands">
<summary>Registers or unregisters a class to the GxShapefileTableExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxShapefileTableExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxShapefileTableExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxShapefileTableExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxShapefileTableExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxShapefileTableToFeatureClassMenuCommands">
<summary>Registers or unregisters a class to the GxShapefileTableToFeatureClassMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxShapefileTableToFeatureClassMenuCommands.Register(System.String)">
<summary>Registers a class to the GxShapefileTableToFeatureClassMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxShapefileTableToFeatureClassMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxShapefileTableToFeatureClassMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxShortcutContextMenuCommands">
<summary>Registers or unregisters a class to the GxShortcutContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxShortcutContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxShortcutContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxShortcutContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxShortcutContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxSpatialReferencesFolderContextMenuCommands">
<summary>Registers or unregisters a class to the GxSpatialReferencesFolderContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSpatialReferencesFolderContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxSpatialReferencesFolderContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSpatialReferencesFolderContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxSpatialReferencesFolderContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxSpatialReferencesFolderNewMenuCommands">
<summary>Registers or unregisters a class to the GxSpatialReferencesFolderNewMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSpatialReferencesFolderNewMenuCommands.Register(System.String)">
<summary>Registers a class to the GxSpatialReferencesFolderNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxSpatialReferencesFolderNewMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxSpatialReferencesFolderNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxStandaloneFeatureClassContextMenuCommands">
<summary>Registers or unregisters a class to the GxStandaloneFeatureClassContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxStandaloneFeatureClassContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxStandaloneFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxStandaloneFeatureClassContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxStandaloneFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxStreetMapFeatureClassContextMenuCommands">
<summary>Registers or unregisters a class to the GxStreetMapFeatureClassContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxStreetMapFeatureClassContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxStreetMapFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxStreetMapFeatureClassContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxStreetMapFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxStreetMapFeatureClassExportMenuCommands">
<summary>Registers or unregisters a class to the GxStreetMapFeatureClassExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxStreetMapFeatureClassExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxStreetMapFeatureClassExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxStreetMapFeatureClassExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxStreetMapFeatureClassExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxStreetMapFeatureClassPropertyPages">
<summary>Registers or unregisters a class to the GxStreetMapFeatureClassPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxStreetMapFeatureClassPropertyPages.Register(System.String)">
<summary>Registers a class to the GxStreetMapFeatureClassPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxStreetMapFeatureClassPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GxStreetMapFeatureClassPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxTableContextMenuCommands">
<summary>Registers or unregisters a class to the GxTableContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxTableContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxTableContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxTableContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxTableContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxTableExportMenuCommands">
<summary>Registers or unregisters a class to the GxTableExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxTableExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxTableExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxTableExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxTableExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxTableToFeatureClassMenuCommands">
<summary>Registers or unregisters a class to the GxTableToFeatureClassMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxTableToFeatureClassMenuCommands.Register(System.String)">
<summary>Registers a class to the GxTableToFeatureClassMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxTableToFeatureClassMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxTableToFeatureClassMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxTabViews">
<summary>Registers or unregisters a class to the GxTabViews component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxTabViews.Register(System.String)">
<summary>Registers a class to the GxTabViews component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxTabViews.Unregister(System.String)">
<summary>Unregisters a class from the GxTabViews component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxTerrainContextMenuCommands">
<summary>Registers or unregisters a class to the GxTerrainContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxTerrainContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxTerrainContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxTerrainContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxTerrainContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxTinContextMenuCommands">
<summary>Registers or unregisters a class to the GxTinContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxTinContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxTinContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxTinContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxTinContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxToolboxAddMenuCommands">
<summary>Registers or unregisters a class to the GxToolboxAddMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolboxAddMenuCommands.Register(System.String)">
<summary>Registers a class to the GxToolboxAddMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolboxAddMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxToolboxAddMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxToolboxContextMenuCommands">
<summary>Registers or unregisters a class to the GxToolboxContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolboxContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxToolboxContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolboxContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxToolboxContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxToolboxesFolderContextMenuCommands">
<summary>Registers or unregisters a class to the GxToolboxesFolderContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolboxesFolderContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxToolboxesFolderContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolboxesFolderContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxToolboxesFolderContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxToolboxesFolderNewMenuCommands">
<summary>Registers or unregisters a class to the GxToolboxesFolderNewMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolboxesFolderNewMenuCommands.Register(System.String)">
<summary>Registers a class to the GxToolboxesFolderNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolboxesFolderNewMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxToolboxesFolderNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxToolboxNewMenuCommands">
<summary>Registers or unregisters a class to the GxToolboxNewMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolboxNewMenuCommands.Register(System.String)">
<summary>Registers a class to the GxToolboxNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolboxNewMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxToolboxNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxToolContextMenuCommands">
<summary>Registers or unregisters a class to the GxToolContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxToolContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxToolContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxToolsetAddMenuCommands">
<summary>Registers or unregisters a class to the GxToolsetAddMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolsetAddMenuCommands.Register(System.String)">
<summary>Registers a class to the GxToolsetAddMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolsetAddMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxToolsetAddMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxToolsetContextMenuCommands">
<summary>Registers or unregisters a class to the GxToolsetContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolsetContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxToolsetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolsetContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxToolsetContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxToolsetNewMenuCommands">
<summary>Registers or unregisters a class to the GxToolsetNewMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolsetNewMenuCommands.Register(System.String)">
<summary>Registers a class to the GxToolsetNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxToolsetNewMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxToolsetNewMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxTopologyContextMenuCommands">
<summary>Registers or unregisters a class to the GxTopologyContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxTopologyContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxTopologyContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxTopologyContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxTopologyContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxViews">
<summary>Registers or unregisters a class to the GxViews component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxViews.Register(System.String)">
<summary>Registers a class to the GxViews component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxViews.Unregister(System.String)">
<summary>Unregisters a class from the GxViews component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxVpfCoverageContextMenuCommands">
<summary>Registers or unregisters a class to the GxVpfCoverageContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfCoverageContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxVpfCoverageContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfCoverageContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxVpfCoverageContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxVpfCoverageExportMenuCommands">
<summary>Registers or unregisters a class to the GxVpfCoverageExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfCoverageExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxVpfCoverageExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfCoverageExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxVpfCoverageExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxVpfCoveragePropertyPages">
<summary>Registers or unregisters a class to the GxVpfCoveragePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfCoveragePropertyPages.Register(System.String)">
<summary>Registers a class to the GxVpfCoveragePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfCoveragePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GxVpfCoveragePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxVpfFeatureClassContextMenuCommands">
<summary>Registers or unregisters a class to the GxVpfFeatureClassContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfFeatureClassContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxVpfFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfFeatureClassContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxVpfFeatureClassContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxVpfFeatureClassExportMenuCommands">
<summary>Registers or unregisters a class to the GxVpfFeatureClassExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfFeatureClassExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxVpfFeatureClassExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfFeatureClassExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxVpfFeatureClassExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxVpfFeatureClassPropertyPages">
<summary>Registers or unregisters a class to the GxVpfFeatureClassPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfFeatureClassPropertyPages.Register(System.String)">
<summary>Registers a class to the GxVpfFeatureClassPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfFeatureClassPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GxVpfFeatureClassPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxVpfTableContextMenuCommands">
<summary>Registers or unregisters a class to the GxVpfTableContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfTableContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxVpfTableContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfTableContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxVpfTableContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxVpfTableExportMenuCommands">
<summary>Registers or unregisters a class to the GxVpfTableExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfTableExportMenuCommands.Register(System.String)">
<summary>Registers a class to the GxVpfTableExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfTableExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxVpfTableExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxVpfTablePropertyPages">
<summary>Registers or unregisters a class to the GxVpfTablePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfTablePropertyPages.Register(System.String)">
<summary>Registers a class to the GxVpfTablePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxVpfTablePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the GxVpfTablePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxWCSCoveragePropertiesPage">
<summary>Registers or unregisters a class to the GxWCSCoveragePropertiesPage component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxWCSCoveragePropertiesPage.Register(System.String)">
<summary>Registers a class to the GxWCSCoveragePropertiesPage component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxWCSCoveragePropertiesPage.Unregister(System.String)">
<summary>Unregisters a class from the GxWCSCoveragePropertiesPage component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxWMSLayerPropertiesPage">
<summary>Registers or unregisters a class to the GxWMSLayerPropertiesPage component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxWMSLayerPropertiesPage.Register(System.String)">
<summary>Registers a class to the GxWMSLayerPropertiesPage component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxWMSLayerPropertiesPage.Unregister(System.String)">
<summary>Unregisters a class from the GxWMSLayerPropertiesPage component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxWMSMapPropertiesPage">
<summary>Registers or unregisters a class to the GxWMSMapPropertiesPage component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxWMSMapPropertiesPage.Register(System.String)">
<summary>Registers a class to the GxWMSMapPropertiesPage component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxWMSMapPropertiesPage.Unregister(System.String)">
<summary>Unregisters a class from the GxWMSMapPropertiesPage component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.GxXMLDocumentContextMenuCommands">
<summary>Registers or unregisters a class to the GxXMLDocumentContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxXMLDocumentContextMenuCommands.Register(System.String)">
<summary>Registers a class to the GxXMLDocumentContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.GxXMLDocumentContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the GxXMLDocumentContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.HelpMenuCommands">
<summary>Registers or unregisters a class to the HelpMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.HelpMenuCommands.Register(System.String)">
<summary>Registers a class to the HelpMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.HelpMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the HelpMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.IdentifyObj">
<summary>Registers or unregisters a class to the IdentifyObj component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.IdentifyObj.Register(System.String)">
<summary>Registers a class to the IdentifyObj component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.IdentifyObj.Unregister(System.String)">
<summary>Unregisters a class from the IdentifyObj component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ImageSettingsPropertyPages">
<summary>Registers or unregisters a class to the ImageSettingsPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ImageSettingsPropertyPages.Register(System.String)">
<summary>Registers a class to the ImageSettingsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ImageSettingsPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the ImageSettingsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.IMSMetadataServicePropertyPages">
<summary>Registers or unregisters a class to the IMSMetadataServicePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.IMSMetadataServicePropertyPages.Register(System.String)">
<summary>Registers a class to the IMSMetadataServicePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.IMSMetadataServicePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the IMSMetadataServicePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.InfoTablePropertyPages">
<summary>Registers or unregisters a class to the InfoTablePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.InfoTablePropertyPages.Register(System.String)">
<summary>Registers a class to the InfoTablePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.InfoTablePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the InfoTablePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.JobManagerContextMenu">
<summary>Registers or unregisters a class to the JobManagerContextMenu component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.JobManagerContextMenu.Register(System.String)">
<summary>Registers a class to the JobManagerContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.JobManagerContextMenu.Unregister(System.String)">
<summary>Unregisters a class from the JobManagerContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LabelStylePages">
<summary>Registers or unregisters a class to the LabelStylePages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LabelStylePages.Register(System.String)">
<summary>Registers a class to the LabelStylePages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LabelStylePages.Unregister(System.String)">
<summary>Unregisters a class from the LabelStylePages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LabelStyleSelectors">
<summary>Registers or unregisters a class to the LabelStyleSelectors component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LabelStyleSelectors.Register(System.String)">
<summary>Registers a class to the LabelStyleSelectors component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LabelStyleSelectors.Unregister(System.String)">
<summary>Unregisters a class from the LabelStyleSelectors component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LayerDrawingDescriptionFactory">
<summary>Registers or unregisters a class to the LayerDrawingDescriptionFactory component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LayerDrawingDescriptionFactory.Register(System.String)">
<summary>Registers a class to the LayerDrawingDescriptionFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LayerDrawingDescriptionFactory.Unregister(System.String)">
<summary>Unregisters a class from the LayerDrawingDescriptionFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LayerFactory">
<summary>Registers or unregisters a class to the LayerFactory component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LayerFactory.Register(System.String)">
<summary>Registers a class to the LayerFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LayerFactory.Unregister(System.String)">
<summary>Unregisters a class from the LayerFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LayerLabelsPropertyPages">
<summary>Registers or unregisters a class to the LayerLabelsPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LayerLabelsPropertyPages.Register(System.String)">
<summary>Registers a class to the LayerLabelsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LayerLabelsPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the LayerLabelsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LayerPropertyPages">
<summary>Registers or unregisters a class to the LayerPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LayerPropertyPages.Register(System.String)">
<summary>Registers a class to the LayerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LayerPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the LayerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LayerPropertySheet">
<summary>Registers or unregisters a class to the LayerPropertySheet component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LayerPropertySheet.Register(System.String)">
<summary>Registers a class to the LayerPropertySheet component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LayerPropertySheet.Unregister(System.String)">
<summary>Unregisters a class from the LayerPropertySheet component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LegendItemPropSheets">
<summary>Registers or unregisters a class to the LegendItemPropSheets component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LegendItemPropSheets.Register(System.String)">
<summary>Registers a class to the LegendItemPropSheets component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LegendItemPropSheets.Unregister(System.String)">
<summary>Unregisters a class from the LegendItemPropSheets component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LegendItems">
<summary>Registers or unregisters a class to the LegendItems component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LegendItems.Register(System.String)">
<summary>Registers a class to the LegendItems component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LegendItems.Unregister(System.String)">
<summary>Unregisters a class from the LegendItems component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LegendSymbolEditors">
<summary>Registers or unregisters a class to the LegendSymbolEditors component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LegendSymbolEditors.Register(System.String)">
<summary>Registers a class to the LegendSymbolEditors component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LegendSymbolEditors.Unregister(System.String)">
<summary>Unregisters a class from the LegendSymbolEditors component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LineCoveredByLineClassErrorCommands">
<summary>Registers or unregisters a class to the LineCoveredByLineClassErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineCoveredByLineClassErrorCommands.Register(System.String)">
<summary>Registers a class to the LineCoveredByLineClassErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineCoveredByLineClassErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the LineCoveredByLineClassErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LineDangleErrorCommands">
<summary>Registers or unregisters a class to the LineDangleErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineDangleErrorCommands.Register(System.String)">
<summary>Registers a class to the LineDangleErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineDangleErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the LineDangleErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LineDecorationElement">
<summary>Registers or unregisters a class to the LineDecorationElement component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineDecorationElement.Register(System.String)">
<summary>Registers a class to the LineDecorationElement component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineDecorationElement.Unregister(System.String)">
<summary>Unregisters a class from the LineDecorationElement component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LineInsideAreaErrorCommands">
<summary>Registers or unregisters a class to the LineInsideAreaErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineInsideAreaErrorCommands.Register(System.String)">
<summary>Registers a class to the LineInsideAreaErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineInsideAreaErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the LineInsideAreaErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LineIntersectionErrorCommands">
<summary>Registers or unregisters a class to the LineIntersectionErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineIntersectionErrorCommands.Register(System.String)">
<summary>Registers a class to the LineIntersectionErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineIntersectionErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the LineIntersectionErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LineIntersectionInteriorTouchErrorCommands">
<summary>Registers or unregisters a class to the LineIntersectionInteriorTouchErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineIntersectionInteriorTouchErrorCommands.Register(System.String)">
<summary>Registers a class to the LineIntersectionInteriorTouchErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineIntersectionInteriorTouchErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the LineIntersectionInteriorTouchErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LineMultipartErrorCommands">
<summary>Registers or unregisters a class to the LineMultipartErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineMultipartErrorCommands.Register(System.String)">
<summary>Registers a class to the LineMultipartErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineMultipartErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the LineMultipartErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LineOverlapErrorCommands">
<summary>Registers or unregisters a class to the LineOverlapErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineOverlapErrorCommands.Register(System.String)">
<summary>Registers a class to the LineOverlapErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineOverlapErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the LineOverlapErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LinePatches">
<summary>Registers or unregisters a class to the LinePatches component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LinePatches.Register(System.String)">
<summary>Registers a class to the LinePatches component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LinePatches.Unregister(System.String)">
<summary>Unregisters a class from the LinePatches component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LinePseudoErrorCommands">
<summary>Registers or unregisters a class to the LinePseudoErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LinePseudoErrorCommands.Register(System.String)">
<summary>Registers a class to the LinePseudoErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LinePseudoErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the LinePseudoErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LineSelfIntersectErrorCommands">
<summary>Registers or unregisters a class to the LineSelfIntersectErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineSelfIntersectErrorCommands.Register(System.String)">
<summary>Registers a class to the LineSelfIntersectErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineSelfIntersectErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the LineSelfIntersectErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LineSelfOverlapErrorCommands">
<summary>Registers or unregisters a class to the LineSelfOverlapErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineSelfOverlapErrorCommands.Register(System.String)">
<summary>Registers a class to the LineSelfOverlapErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineSelfOverlapErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the LineSelfOverlapErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LineStringToolContextMenu">
<summary>Registers or unregisters a class to the LineStringToolContextMenu component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineStringToolContextMenu.Register(System.String)">
<summary>Registers a class to the LineStringToolContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineStringToolContextMenu.Unregister(System.String)">
<summary>Unregisters a class from the LineStringToolContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LineSymbol">
<summary>Registers or unregisters a class to the LineSymbol component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineSymbol.Register(System.String)">
<summary>Registers a class to the LineSymbol component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LineSymbol.Unregister(System.String)">
<summary>Unregisters a class from the LineSymbol component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.LocatorWorkspaces">
<summary>Registers or unregisters a class to the LocatorWorkspaces component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LocatorWorkspaces.Register(System.String)">
<summary>Registers a class to the LocatorWorkspaces component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.LocatorWorkspaces.Unregister(System.String)">
<summary>Unregisters a class from the LocatorWorkspaces component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MapAnimationTypes">
<summary>Registers or unregisters a class to the MapAnimationTypes component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MapAnimationTypes.Register(System.String)">
<summary>Registers a class to the MapAnimationTypes component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MapAnimationTypes.Unregister(System.String)">
<summary>Unregisters a class from the MapAnimationTypes component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MapDocumentPropertyPages">
<summary>Registers or unregisters a class to the MapDocumentPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MapDocumentPropertyPages.Register(System.String)">
<summary>Registers a class to the MapDocumentPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MapDocumentPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the MapDocumentPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MapGridBorders">
<summary>Registers or unregisters a class to the MapGridBorders component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MapGridBorders.Register(System.String)">
<summary>Registers a class to the MapGridBorders component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MapGridBorders.Unregister(System.String)">
<summary>Unregisters a class from the MapGridBorders component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MapGridFactory">
<summary>Registers or unregisters a class to the MapGridFactory component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MapGridFactory.Register(System.String)">
<summary>Registers a class to the MapGridFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MapGridFactory.Unregister(System.String)">
<summary>Unregisters a class from the MapGridFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MapGridPropertyPages">
<summary>Registers or unregisters a class to the MapGridPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MapGridPropertyPages.Register(System.String)">
<summary>Registers a class to the MapGridPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MapGridPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the MapGridPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MaplexAnnotationPlacementPages">
<summary>Registers or unregisters a class to the MaplexAnnotationPlacementPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MaplexAnnotationPlacementPages.Register(System.String)">
<summary>Registers a class to the MaplexAnnotationPlacementPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MaplexAnnotationPlacementPages.Unregister(System.String)">
<summary>Unregisters a class from the MaplexAnnotationPlacementPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MaplexLabelStylePages">
<summary>Registers or unregisters a class to the MaplexLabelStylePages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MaplexLabelStylePages.Register(System.String)">
<summary>Registers a class to the MaplexLabelStylePages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MaplexLabelStylePages.Unregister(System.String)">
<summary>Unregisters a class from the MaplexLabelStylePages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MapPropertyPages">
<summary>Registers or unregisters a class to the MapPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MapPropertyPages.Register(System.String)">
<summary>Registers a class to the MapPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MapPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the MapPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MapScalePropertyPages">
<summary>Registers or unregisters a class to the MapScalePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MapScalePropertyPages.Register(System.String)">
<summary>Registers a class to the MapScalePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MapScalePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the MapScalePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MarkerPlacement">
<summary>Registers or unregisters a class to the MarkerPlacement component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MarkerPlacement.Register(System.String)">
<summary>Registers a class to the MarkerPlacement component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MarkerPlacement.Unregister(System.String)">
<summary>Unregisters a class from the MarkerPlacement component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MarkerSymbol">
<summary>Registers or unregisters a class to the MarkerSymbol component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MarkerSymbol.Register(System.String)">
<summary>Registers a class to the MarkerSymbol component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MarkerSymbol.Unregister(System.String)">
<summary>Unregisters a class from the MarkerSymbol component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MBDerivedGeoDatasetProp">
<summary>Registers or unregisters a class to the MBDerivedGeoDatasetProp component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MBDerivedGeoDatasetProp.Register(System.String)">
<summary>Registers a class to the MBDerivedGeoDatasetProp component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MBDerivedGeoDatasetProp.Unregister(System.String)">
<summary>Unregisters a class from the MBDerivedGeoDatasetProp component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MBGeoDatasetProp">
<summary>Registers or unregisters a class to the MBGeoDatasetProp component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MBGeoDatasetProp.Register(System.String)">
<summary>Registers a class to the MBGeoDatasetProp component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MBGeoDatasetProp.Unregister(System.String)">
<summary>Unregisters a class from the MBGeoDatasetProp component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MBGeoOperationProp">
<summary>Registers or unregisters a class to the MBGeoOperationProp component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MBGeoOperationProp.Register(System.String)">
<summary>Registers a class to the MBGeoOperationProp component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MBGeoOperationProp.Unregister(System.String)">
<summary>Unregisters a class from the MBGeoOperationProp component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MBLayerProp">
<summary>Registers or unregisters a class to the MBLayerProp component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MBLayerProp.Register(System.String)">
<summary>Registers a class to the MBLayerProp component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MBLayerProp.Unregister(System.String)">
<summary>Unregisters a class from the MBLayerProp component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MBMethodProp">
<summary>Registers or unregisters a class to the MBMethodProp component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MBMethodProp.Register(System.String)">
<summary>Registers a class to the MBMethodProp component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MBMethodProp.Unregister(System.String)">
<summary>Unregisters a class from the MBMethodProp component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MBProcessProp">
<summary>Registers or unregisters a class to the MBProcessProp component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MBProcessProp.Register(System.String)">
<summary>Registers a class to the MBProcessProp component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MBProcessProp.Unregister(System.String)">
<summary>Unregisters a class from the MBProcessProp component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MBTableProp">
<summary>Registers or unregisters a class to the MBTableProp component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MBTableProp.Register(System.String)">
<summary>Registers a class to the MBTableProp component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MBTableProp.Unregister(System.String)">
<summary>Unregisters a class from the MBTableProp component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MdDiagramPropertyPages">
<summary>Registers or unregisters a class to the MdDiagramPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MdDiagramPropertyPages.Register(System.String)">
<summary>Registers a class to the MdDiagramPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MdDiagramPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the MdDiagramPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MdElementMetadataPropertyPages">
<summary>Registers or unregisters a class to the MdElementMetadataPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MdElementMetadataPropertyPages.Register(System.String)">
<summary>Registers a class to the MdElementMetadataPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MdElementMetadataPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the MdElementMetadataPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MdElementPropertyPages">
<summary>Registers or unregisters a class to the MdElementPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MdElementPropertyPages.Register(System.String)">
<summary>Registers a class to the MdElementPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MdElementPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the MdElementPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MdProcessPropertyPages">
<summary>Registers or unregisters a class to the MdProcessPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MdProcessPropertyPages.Register(System.String)">
<summary>Registers a class to the MdProcessPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MdProcessPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the MdProcessPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MetadataEditor">
<summary>Registers or unregisters a class to the MetadataEditor component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MetadataEditor.Register(System.String)">
<summary>Registers a class to the MetadataEditor component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MetadataEditor.Unregister(System.String)">
<summary>Unregisters a class from the MetadataEditor component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MetadataEditorPropertyPages">
<summary>Registers or unregisters a class to the MetadataEditorPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MetadataEditorPropertyPages.Register(System.String)">
<summary>Registers a class to the MetadataEditorPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MetadataEditorPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the MetadataEditorPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MetadataSynchronizers">
<summary>Registers or unregisters a class to the MetadataSynchronizers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MetadataSynchronizers.Register(System.String)">
<summary>Registers a class to the MetadataSynchronizers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MetadataSynchronizers.Unregister(System.String)">
<summary>Unregisters a class from the MetadataSynchronizers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ModelScriptConverters">
<summary>Registers or unregisters a class to the ModelScriptConverters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ModelScriptConverters.Register(System.String)">
<summary>Registers a class to the ModelScriptConverters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ModelScriptConverters.Unregister(System.String)">
<summary>Unregisters a class from the ModelScriptConverters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MosaicDefinitionExportMenuCommands">
<summary>Registers or unregisters a class to the MosaicDefinitionExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MosaicDefinitionExportMenuCommands.Register(System.String)">
<summary>Registers a class to the MosaicDefinitionExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MosaicDefinitionExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the MosaicDefinitionExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MosaicLayerPreviewPropertyPages">
<summary>Registers or unregisters a class to the MosaicLayerPreviewPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MosaicLayerPreviewPropertyPages.Register(System.String)">
<summary>Registers a class to the MosaicLayerPreviewPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MosaicLayerPreviewPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the MosaicLayerPreviewPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MultiGenReplicaPropertyPages">
<summary>Registers or unregisters a class to the MultiGenReplicaPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MultiGenReplicaPropertyPages.Register(System.String)">
<summary>Registers a class to the MultiGenReplicaPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MultiGenReplicaPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the MultiGenReplicaPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MxCommandBars">
<summary>Registers or unregisters a class to the MxCommandBars component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxCommandBars.Register(System.String)">
<summary>Registers a class to the MxCommandBars component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxCommandBars.Unregister(System.String)">
<summary>Unregisters a class from the MxCommandBars component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MxCommands">
<summary>Registers or unregisters a class to the MxCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxCommands.Register(System.String)">
<summary>Registers a class to the MxCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxCommands.Unregister(System.String)">
<summary>Unregisters a class from the MxCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MxDDECommandHandler">
<summary>Registers or unregisters a class to the MxDDECommandHandler component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxDDECommandHandler.Register(System.String)">
<summary>Registers a class to the MxDDECommandHandler component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxDDECommandHandler.Unregister(System.String)">
<summary>Unregisters a class from the MxDDECommandHandler component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MxDockableWindows">
<summary>Registers or unregisters a class to the MxDockableWindows component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxDockableWindows.Register(System.String)">
<summary>Registers a class to the MxDockableWindows component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxDockableWindows.Unregister(System.String)">
<summary>Unregisters a class from the MxDockableWindows component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MxDocumentDropTarget">
<summary>Registers or unregisters a class to the MxDocumentDropTarget component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxDocumentDropTarget.Register(System.String)">
<summary>Registers a class to the MxDocumentDropTarget component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxDocumentDropTarget.Unregister(System.String)">
<summary>Unregisters a class from the MxDocumentDropTarget component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MxExtension">
<summary>Registers or unregisters a class to the MxExtension component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxExtension.Register(System.String)">
<summary>Registers a class to the MxExtension component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxExtension.Unregister(System.String)">
<summary>Unregisters a class from the MxExtension component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MxExtensionJIT">
<summary>Registers or unregisters a class to the MxExtensionJIT component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxExtensionJIT.Register(System.String)">
<summary>Registers a class to the MxExtensionJIT component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxExtensionJIT.Unregister(System.String)">
<summary>Unregisters a class from the MxExtensionJIT component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MxFileMenuCommands">
<summary>Registers or unregisters a class to the MxFileMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxFileMenuCommands.Register(System.String)">
<summary>Registers a class to the MxFileMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxFileMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the MxFileMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MxFileMenuDefs">
<summary>Registers or unregisters a class to the MxFileMenuDefs component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxFileMenuDefs.Register(System.String)">
<summary>Registers a class to the MxFileMenuDefs component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxFileMenuDefs.Unregister(System.String)">
<summary>Unregisters a class from the MxFileMenuDefs component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MxFinders">
<summary>Registers or unregisters a class to the MxFinders component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxFinders.Register(System.String)">
<summary>Registers a class to the MxFinders component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxFinders.Unregister(System.String)">
<summary>Unregisters a class from the MxFinders component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MxInsetWindowPages">
<summary>Registers or unregisters a class to the MxInsetWindowPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxInsetWindowPages.Register(System.String)">
<summary>Registers a class to the MxInsetWindowPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxInsetWindowPages.Unregister(System.String)">
<summary>Unregisters a class from the MxInsetWindowPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MxPalettes">
<summary>Registers or unregisters a class to the MxPalettes component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxPalettes.Register(System.String)">
<summary>Registers a class to the MxPalettes component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxPalettes.Unregister(System.String)">
<summary>Unregisters a class from the MxPalettes component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MxToolMenuCommands">
<summary>Registers or unregisters a class to the MxToolMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxToolMenuCommands.Register(System.String)">
<summary>Registers a class to the MxToolMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxToolMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the MxToolMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.MxViewCommands">
<summary>Registers or unregisters a class to the MxViewCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxViewCommands.Register(System.String)">
<summary>Registers a class to the MxViewCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.MxViewCommands.Unregister(System.String)">
<summary>Unregisters a class from the MxViewCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NameStringParser">
<summary>Registers or unregisters a class to the NameStringParser component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NameStringParser.Register(System.String)">
<summary>Registers a class to the NameStringParser component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NameStringParser.Unregister(System.String)">
<summary>Unregisters a class from the NameStringParser component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NativeTypes">
<summary>Registers or unregisters a class to the NativeTypes component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NativeTypes.Register(System.String)">
<summary>Registers a class to the NativeTypes component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NativeTypes.Unregister(System.String)">
<summary>Unregisters a class from the NativeTypes component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystAgent">
<summary>Registers or unregisters a class to the NetworkAnalystAgent component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystAgent.Register(System.String)">
<summary>Registers a class to the NetworkAnalystAgent component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystAgent.Unregister(System.String)">
<summary>Unregisters a class from the NetworkAnalystAgent component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystFinders">
<summary>Registers or unregisters a class to the NetworkAnalystFinders component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystFinders.Register(System.String)">
<summary>Registers a class to the NetworkAnalystFinders component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystFinders.Unregister(System.String)">
<summary>Unregisters a class from the NetworkAnalystFinders component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystLocationOptionsPropertyPages">
<summary>Registers or unregisters a class to the NetworkAnalystLocationOptionsPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystLocationOptionsPropertyPages.Register(System.String)">
<summary>Registers a class to the NetworkAnalystLocationOptionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystLocationOptionsPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the NetworkAnalystLocationOptionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystOptionsPropertyPages">
<summary>Registers or unregisters a class to the NetworkAnalystOptionsPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystOptionsPropertyPages.Register(System.String)">
<summary>Registers a class to the NetworkAnalystOptionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystOptionsPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the NetworkAnalystOptionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystSolver">
<summary>Registers or unregisters a class to the NetworkAnalystSolver component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystSolver.Register(System.String)">
<summary>Registers a class to the NetworkAnalystSolver component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystSolver.Unregister(System.String)">
<summary>Unregisters a class from the NetworkAnalystSolver component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystSymbolizer">
<summary>Registers or unregisters a class to the NetworkAnalystSymbolizer component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystSymbolizer.Register(System.String)">
<summary>Registers a class to the NetworkAnalystSymbolizer component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystSymbolizer.Unregister(System.String)">
<summary>Unregisters a class from the NetworkAnalystSymbolizer component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystWindowCategoryCommand">
<summary>Registers or unregisters a class to the NetworkAnalystWindowCategoryCommand component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystWindowCategoryCommand.Register(System.String)">
<summary>Registers a class to the NetworkAnalystWindowCategoryCommand component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystWindowCategoryCommand.Unregister(System.String)">
<summary>Unregisters a class from the NetworkAnalystWindowCategoryCommand component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystWindowItemCategory">
<summary>Registers or unregisters a class to the NetworkAnalystWindowItemCategory component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystWindowItemCategory.Register(System.String)">
<summary>Registers a class to the NetworkAnalystWindowItemCategory component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystWindowItemCategory.Unregister(System.String)">
<summary>Unregisters a class from the NetworkAnalystWindowItemCategory component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystWindowItemsCommand">
<summary>Registers or unregisters a class to the NetworkAnalystWindowItemsCommand component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystWindowItemsCommand.Register(System.String)">
<summary>Registers a class to the NetworkAnalystWindowItemsCommand component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkAnalystWindowItemsCommand.Unregister(System.String)">
<summary>Unregisters a class from the NetworkAnalystWindowItemsCommand component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NetworkDirectionsPropertyPages">
<summary>Registers or unregisters a class to the NetworkDirectionsPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkDirectionsPropertyPages.Register(System.String)">
<summary>Registers a class to the NetworkDirectionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkDirectionsPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the NetworkDirectionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NetworkEvaluatorEditor">
<summary>Registers or unregisters a class to the NetworkEvaluatorEditor component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkEvaluatorEditor.Register(System.String)">
<summary>Registers a class to the NetworkEvaluatorEditor component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkEvaluatorEditor.Unregister(System.String)">
<summary>Unregisters a class from the NetworkEvaluatorEditor component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NetworkLayerSymbology">
<summary>Registers or unregisters a class to the NetworkLayerSymbology component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkLayerSymbology.Register(System.String)">
<summary>Registers a class to the NetworkLayerSymbology component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkLayerSymbology.Unregister(System.String)">
<summary>Unregisters a class from the NetworkLayerSymbology component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NetworkRendererPropertyPages">
<summary>Registers or unregisters a class to the NetworkRendererPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkRendererPropertyPages.Register(System.String)">
<summary>Registers a class to the NetworkRendererPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NetworkRendererPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the NetworkRendererPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NotMaskableLayers">
<summary>Registers or unregisters a class to the NotMaskableLayers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NotMaskableLayers.Register(System.String)">
<summary>Registers a class to the NotMaskableLayers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NotMaskableLayers.Unregister(System.String)">
<summary>Unregisters a class from the NotMaskableLayers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.NumberFormatPropertyPages">
<summary>Registers or unregisters a class to the NumberFormatPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NumberFormatPropertyPages.Register(System.String)">
<summary>Registers a class to the NumberFormatPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.NumberFormatPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the NumberFormatPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.OptimizerComponentFactory">
<summary>Registers or unregisters a class to the OptimizerComponentFactory component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.OptimizerComponentFactory.Register(System.String)">
<summary>Registers a class to the OptimizerComponentFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.OptimizerComponentFactory.Unregister(System.String)">
<summary>Unregisters a class from the OptimizerComponentFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.OptionsPropertyPages">
<summary>Registers or unregisters a class to the OptionsPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.OptionsPropertyPages.Register(System.String)">
<summary>Registers a class to the OptionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.OptionsPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the OptionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.OverposterPropertiesPages">
<summary>Registers or unregisters a class to the OverposterPropertiesPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.OverposterPropertiesPages.Register(System.String)">
<summary>Registers a class to the OverposterPropertiesPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.OverposterPropertiesPages.Unregister(System.String)">
<summary>Unregisters a class from the OverposterPropertiesPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.Overposters">
<summary>Registers or unregisters a class to the Overposters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.Overposters.Register(System.String)">
<summary>Registers a class to the Overposters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.Overposters.Unregister(System.String)">
<summary>Unregisters a class from the Overposters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.PageIndexPropertyPages">
<summary>Registers or unregisters a class to the PageIndexPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PageIndexPropertyPages.Register(System.String)">
<summary>Registers a class to the PageIndexPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PageIndexPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the PageIndexPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ParcelContextMenu">
<summary>Registers or unregisters a class to the ParcelContextMenu component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ParcelContextMenu.Register(System.String)">
<summary>Registers a class to the ParcelContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ParcelContextMenu.Unregister(System.String)">
<summary>Unregisters a class from the ParcelContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ParcelExplorerContextMenu">
<summary>Registers or unregisters a class to the ParcelExplorerContextMenu component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ParcelExplorerContextMenu.Register(System.String)">
<summary>Registers a class to the ParcelExplorerContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ParcelExplorerContextMenu.Unregister(System.String)">
<summary>Unregisters a class from the ParcelExplorerContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ParcelLinesContextMenu">
<summary>Registers or unregisters a class to the ParcelLinesContextMenu component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ParcelLinesContextMenu.Register(System.String)">
<summary>Registers a class to the ParcelLinesContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ParcelLinesContextMenu.Unregister(System.String)">
<summary>Unregisters a class from the ParcelLinesContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.Pictures">
<summary>Registers or unregisters a class to the Pictures component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.Pictures.Register(System.String)">
<summary>Registers a class to the Pictures component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.Pictures.Unregister(System.String)">
<summary>Unregisters a class from the Pictures component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.PlanContextMenu">
<summary>Registers or unregisters a class to the PlanContextMenu component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PlanContextMenu.Register(System.String)">
<summary>Registers a class to the PlanContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PlanContextMenu.Unregister(System.String)">
<summary>Unregisters a class from the PlanContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.PlugInWorkspaceFactoryHelpers">
<summary>Registers or unregisters a class to the PlugInWorkspaceFactoryHelpers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PlugInWorkspaceFactoryHelpers.Register(System.String)">
<summary>Registers a class to the PlugInWorkspaceFactoryHelpers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PlugInWorkspaceFactoryHelpers.Unregister(System.String)">
<summary>Unregisters a class from the PlugInWorkspaceFactoryHelpers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.PointCoincideErrorCommands">
<summary>Registers or unregisters a class to the PointCoincideErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PointCoincideErrorCommands.Register(System.String)">
<summary>Registers a class to the PointCoincideErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PointCoincideErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the PointCoincideErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.PointCoveredByAreaBoundaryErrorCommands">
<summary>Registers or unregisters a class to the PointCoveredByAreaBoundaryErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PointCoveredByAreaBoundaryErrorCommands.Register(System.String)">
<summary>Registers a class to the PointCoveredByAreaBoundaryErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PointCoveredByAreaBoundaryErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the PointCoveredByAreaBoundaryErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.PointCoveredByEndpointErrorCommands">
<summary>Registers or unregisters a class to the PointCoveredByEndpointErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PointCoveredByEndpointErrorCommands.Register(System.String)">
<summary>Registers a class to the PointCoveredByEndpointErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PointCoveredByEndpointErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the PointCoveredByEndpointErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.PointCoveredByLineErrorCommands">
<summary>Registers or unregisters a class to the PointCoveredByLineErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PointCoveredByLineErrorCommands.Register(System.String)">
<summary>Registers a class to the PointCoveredByLineErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PointCoveredByLineErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the PointCoveredByLineErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.PointDisjointErrorCommands">
<summary>Registers or unregisters a class to the PointDisjointErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PointDisjointErrorCommands.Register(System.String)">
<summary>Registers a class to the PointDisjointErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PointDisjointErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the PointDisjointErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.PointInsideAreaErrorCommands">
<summary>Registers or unregisters a class to the PointInsideAreaErrorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PointInsideAreaErrorCommands.Register(System.String)">
<summary>Registers a class to the PointInsideAreaErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PointInsideAreaErrorCommands.Unregister(System.String)">
<summary>Unregisters a class from the PointInsideAreaErrorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.Pre70CoveragePropertyPages">
<summary>Registers or unregisters a class to the Pre70CoveragePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.Pre70CoveragePropertyPages.Register(System.String)">
<summary>Registers a class to the Pre70CoveragePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.Pre70CoveragePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the Pre70CoveragePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.PrinterDrivers">
<summary>Registers or unregisters a class to the PrinterDrivers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PrinterDrivers.Register(System.String)">
<summary>Registers a class to the PrinterDrivers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PrinterDrivers.Unregister(System.String)">
<summary>Unregisters a class from the PrinterDrivers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.PrinterPropertyPages">
<summary>Registers or unregisters a class to the PrinterPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PrinterPropertyPages.Register(System.String)">
<summary>Registers a class to the PrinterPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PrinterPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the PrinterPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ProjectedCoordSysPropertyPages">
<summary>Registers or unregisters a class to the ProjectedCoordSysPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ProjectedCoordSysPropertyPages.Register(System.String)">
<summary>Registers a class to the ProjectedCoordSysPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ProjectedCoordSysPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the ProjectedCoordSysPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.PropertyPages">
<summary>Registers or unregisters a class to the PropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PropertyPages.Register(System.String)">
<summary>Registers a class to the PropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.PropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the PropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterAnalysis">
<summary>Registers or unregisters a class to the RasterAnalysis component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterAnalysis.Register(System.String)">
<summary>Registers a class to the RasterAnalysis component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterAnalysis.Unregister(System.String)">
<summary>Unregisters a class from the RasterAnalysis component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterBandPropertyPages">
<summary>Registers or unregisters a class to the RasterBandPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterBandPropertyPages.Register(System.String)">
<summary>Registers a class to the RasterBandPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterBandPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the RasterBandPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterCatalogExportMenuCommands">
<summary>Registers or unregisters a class to the RasterCatalogExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterCatalogExportMenuCommands.Register(System.String)">
<summary>Registers a class to the RasterCatalogExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterCatalogExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the RasterCatalogExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterCatalogLoadMenuCommands">
<summary>Registers or unregisters a class to the RasterCatalogLoadMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterCatalogLoadMenuCommands.Register(System.String)">
<summary>Registers a class to the RasterCatalogLoadMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterCatalogLoadMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the RasterCatalogLoadMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterCatalogRendererPickers">
<summary>Registers or unregisters a class to the RasterCatalogRendererPickers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterCatalogRendererPickers.Register(System.String)">
<summary>Registers a class to the RasterCatalogRendererPickers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterCatalogRendererPickers.Unregister(System.String)">
<summary>Unregisters a class from the RasterCatalogRendererPickers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterCatalogRenderersPropertyPages">
<summary>Registers or unregisters a class to the RasterCatalogRenderersPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterCatalogRenderersPropertyPages.Register(System.String)">
<summary>Registers a class to the RasterCatalogRenderersPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterCatalogRenderersPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the RasterCatalogRenderersPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterConversionOp">
<summary>Registers or unregisters a class to the RasterConversionOp component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterConversionOp.Register(System.String)">
<summary>Registers a class to the RasterConversionOp component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterConversionOp.Unregister(System.String)">
<summary>Unregisters a class from the RasterConversionOp component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterDataExclusionPropSheet">
<summary>Registers or unregisters a class to the RasterDataExclusionPropSheet component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterDataExclusionPropSheet.Register(System.String)">
<summary>Registers a class to the RasterDataExclusionPropSheet component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterDataExclusionPropSheet.Unregister(System.String)">
<summary>Unregisters a class from the RasterDataExclusionPropSheet component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterDatasetLoadMenuCommands">
<summary>Registers or unregisters a class to the RasterDatasetLoadMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterDatasetLoadMenuCommands.Register(System.String)">
<summary>Registers a class to the RasterDatasetLoadMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterDatasetLoadMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the RasterDatasetLoadMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterDatasetPropertyPages">
<summary>Registers or unregisters a class to the RasterDatasetPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterDatasetPropertyPages.Register(System.String)">
<summary>Registers a class to the RasterDatasetPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterDatasetPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the RasterDatasetPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterExportMenuCommands">
<summary>Registers or unregisters a class to the RasterExportMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterExportMenuCommands.Register(System.String)">
<summary>Registers a class to the RasterExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterExportMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the RasterExportMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterGxExportFilters">
<summary>Registers or unregisters a class to the RasterGxExportFilters component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterGxExportFilters.Register(System.String)">
<summary>Registers a class to the RasterGxExportFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterGxExportFilters.Unregister(System.String)">
<summary>Unregisters a class from the RasterGxExportFilters component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterLayerDataMenuItems">
<summary>Registers or unregisters a class to the RasterLayerDataMenuItems component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterLayerDataMenuItems.Register(System.String)">
<summary>Registers a class to the RasterLayerDataMenuItems component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterLayerDataMenuItems.Unregister(System.String)">
<summary>Unregisters a class from the RasterLayerDataMenuItems component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterLayerPropertyPages">
<summary>Registers or unregisters a class to the RasterLayerPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterLayerPropertyPages.Register(System.String)">
<summary>Registers a class to the RasterLayerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterLayerPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the RasterLayerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterRendererMakers">
<summary>Registers or unregisters a class to the RasterRendererMakers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterRendererMakers.Register(System.String)">
<summary>Registers a class to the RasterRendererMakers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterRendererMakers.Unregister(System.String)">
<summary>Unregisters a class from the RasterRendererMakers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterRenderers">
<summary>Registers or unregisters a class to the RasterRenderers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterRenderers.Register(System.String)">
<summary>Registers a class to the RasterRenderers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterRenderers.Unregister(System.String)">
<summary>Unregisters a class from the RasterRenderers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterSnappingPropertyPages">
<summary>Registers or unregisters a class to the RasterSnappingPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterSnappingPropertyPages.Register(System.String)">
<summary>Registers a class to the RasterSnappingPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterSnappingPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the RasterSnappingPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterStatEnvDialog">
<summary>Registers or unregisters a class to the RasterStatEnvDialog component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterStatEnvDialog.Register(System.String)">
<summary>Registers a class to the RasterStatEnvDialog component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterStatEnvDialog.Unregister(System.String)">
<summary>Unregisters a class from the RasterStatEnvDialog component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterTransformationOp">
<summary>Registers or unregisters a class to the RasterTransformationOp component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterTransformationOp.Register(System.String)">
<summary>Registers a class to the RasterTransformationOp component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterTransformationOp.Unregister(System.String)">
<summary>Unregisters a class from the RasterTransformationOp component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RasterTypePropertyPages">
<summary>Registers or unregisters a class to the RasterTypePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterTypePropertyPages.Register(System.String)">
<summary>Registers a class to the RasterTypePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RasterTypePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the RasterTypePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RelationshipClassPropertyPages">
<summary>Registers or unregisters a class to the RelationshipClassPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RelationshipClassPropertyPages.Register(System.String)">
<summary>Registers a class to the RelationshipClassPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RelationshipClassPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the RelationshipClassPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RendererPropertyPages">
<summary>Registers or unregisters a class to the RendererPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RendererPropertyPages.Register(System.String)">
<summary>Registers a class to the RendererPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RendererPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the RendererPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.RepresentationClassPropertyPage">
<summary>Registers or unregisters a class to the RepresentationClassPropertyPage component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RepresentationClassPropertyPage.Register(System.String)">
<summary>Registers a class to the RepresentationClassPropertyPage component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.RepresentationClassPropertyPage.Unregister(System.String)">
<summary>Unregisters a class from the RepresentationClassPropertyPage component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SAExtensions">
<summary>Registers or unregisters a class to the SAExtensions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SAExtensions.Register(System.String)">
<summary>Registers a class to the SAExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SAExtensions.Unregister(System.String)">
<summary>Unregisters a class from the SAExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SAOperation">
<summary>Registers or unregisters a class to the SAOperation component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SAOperation.Register(System.String)">
<summary>Registers a class to the SAOperation component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SAOperation.Unregister(System.String)">
<summary>Unregisters a class from the SAOperation component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ScaleBars">
<summary>Registers or unregisters a class to the ScaleBars component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ScaleBars.Register(System.String)">
<summary>Registers a class to the ScaleBars component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ScaleBars.Unregister(System.String)">
<summary>Unregisters a class from the ScaleBars component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SceneExporter3dDrivers">
<summary>Registers or unregisters a class to the SceneExporter3dDrivers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SceneExporter3dDrivers.Register(System.String)">
<summary>Registers a class to the SceneExporter3dDrivers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SceneExporter3dDrivers.Unregister(System.String)">
<summary>Unregisters a class from the SceneExporter3dDrivers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SceneExporter3dPropertyPages">
<summary>Registers or unregisters a class to the SceneExporter3dPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SceneExporter3dPropertyPages.Register(System.String)">
<summary>Registers a class to the SceneExporter3dPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SceneExporter3dPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the SceneExporter3dPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SceneExporterVideoDrivers">
<summary>Registers or unregisters a class to the SceneExporterVideoDrivers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SceneExporterVideoDrivers.Register(System.String)">
<summary>Registers a class to the SceneExporterVideoDrivers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SceneExporterVideoDrivers.Unregister(System.String)">
<summary>Unregisters a class from the SceneExporterVideoDrivers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SceneExporterVideoPropertyPages">
<summary>Registers or unregisters a class to the SceneExporterVideoPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SceneExporterVideoPropertyPages.Register(System.String)">
<summary>Registers a class to the SceneExporterVideoPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SceneExporterVideoPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the SceneExporterVideoPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ScenePropertyPages">
<summary>Registers or unregisters a class to the ScenePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ScenePropertyPages.Register(System.String)">
<summary>Registers a class to the ScenePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ScenePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the ScenePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicAlgorithmPages">
<summary>Registers or unregisters a class to the SchematicAlgorithmPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicAlgorithmPages.Register(System.String)">
<summary>Registers a class to the SchematicAlgorithmPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicAlgorithmPages.Unregister(System.String)">
<summary>Unregisters a class from the SchematicAlgorithmPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicAlgorithms">
<summary>Registers or unregisters a class to the SchematicAlgorithms component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicAlgorithms.Register(System.String)">
<summary>Registers a class to the SchematicAlgorithms component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicAlgorithms.Unregister(System.String)">
<summary>Unregisters a class from the SchematicAlgorithms component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicAnalystPages">
<summary>Registers or unregisters a class to the SchematicAnalystPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicAnalystPages.Register(System.String)">
<summary>Registers a class to the SchematicAnalystPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicAnalystPages.Unregister(System.String)">
<summary>Unregisters a class from the SchematicAnalystPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicAnalysts">
<summary>Registers or unregisters a class to the SchematicAnalysts component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicAnalysts.Register(System.String)">
<summary>Registers a class to the SchematicAnalysts component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicAnalysts.Unregister(System.String)">
<summary>Unregisters a class from the SchematicAnalysts component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicBuilderEngine">
<summary>Registers or unregisters a class to the SchematicBuilderEngine component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicBuilderEngine.Register(System.String)">
<summary>Registers a class to the SchematicBuilderEngine component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicBuilderEngine.Unregister(System.String)">
<summary>Unregisters a class from the SchematicBuilderEngine component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicBuilderPropertyPages">
<summary>Registers or unregisters a class to the SchematicBuilderPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicBuilderPropertyPages.Register(System.String)">
<summary>Registers a class to the SchematicBuilderPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicBuilderPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the SchematicBuilderPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicBuilders">
<summary>Registers or unregisters a class to the SchematicBuilders component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicBuilders.Register(System.String)">
<summary>Registers a class to the SchematicBuilders component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicBuilders.Unregister(System.String)">
<summary>Unregisters a class from the SchematicBuilders component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicBuilderUI">
<summary>Registers or unregisters a class to the SchematicBuilderUI component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicBuilderUI.Register(System.String)">
<summary>Registers a class to the SchematicBuilderUI component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicBuilderUI.Unregister(System.String)">
<summary>Unregisters a class from the SchematicBuilderUI component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicCreateDiagramDialog">
<summary>Registers or unregisters a class to the SchematicCreateDiagramDialog component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicCreateDiagramDialog.Register(System.String)">
<summary>Registers a class to the SchematicCreateDiagramDialog component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicCreateDiagramDialog.Unregister(System.String)">
<summary>Unregisters a class from the SchematicCreateDiagramDialog component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicDatasetPropertyPages">
<summary>Registers or unregisters a class to the SchematicDatasetPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicDatasetPropertyPages.Register(System.String)">
<summary>Registers a class to the SchematicDatasetPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicDatasetPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the SchematicDatasetPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicDiagramPropertyPages">
<summary>Registers or unregisters a class to the SchematicDiagramPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicDiagramPropertyPages.Register(System.String)">
<summary>Registers a class to the SchematicDiagramPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicDiagramPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the SchematicDiagramPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicEditingOptionsPropertyPages">
<summary>Registers or unregisters a class to the SchematicEditingOptionsPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicEditingOptionsPropertyPages.Register(System.String)">
<summary>Registers a class to the SchematicEditingOptionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicEditingOptionsPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the SchematicEditingOptionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicFolderPropertyPages">
<summary>Registers or unregisters a class to the SchematicFolderPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicFolderPropertyPages.Register(System.String)">
<summary>Registers a class to the SchematicFolderPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicFolderPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the SchematicFolderPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicOptionsPropertyPages">
<summary>Registers or unregisters a class to the SchematicOptionsPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicOptionsPropertyPages.Register(System.String)">
<summary>Registers a class to the SchematicOptionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicOptionsPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the SchematicOptionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicRelationManagers">
<summary>Registers or unregisters a class to the SchematicRelationManagers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicRelationManagers.Register(System.String)">
<summary>Registers a class to the SchematicRelationManagers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicRelationManagers.Unregister(System.String)">
<summary>Unregisters a class from the SchematicRelationManagers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicRulePropertyPages">
<summary>Registers or unregisters a class to the SchematicRulePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicRulePropertyPages.Register(System.String)">
<summary>Registers a class to the SchematicRulePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicRulePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the SchematicRulePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicRules">
<summary>Registers or unregisters a class to the SchematicRules component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicRules.Register(System.String)">
<summary>Registers a class to the SchematicRules component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicRules.Unregister(System.String)">
<summary>Unregisters a class from the SchematicRules component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicRulesExtendedCriteria">
<summary>Registers or unregisters a class to the SchematicRulesExtendedCriteria component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicRulesExtendedCriteria.Register(System.String)">
<summary>Registers a class to the SchematicRulesExtendedCriteria component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicRulesExtendedCriteria.Unregister(System.String)">
<summary>Unregisters a class from the SchematicRulesExtendedCriteria component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SchematicToolsEdit">
<summary>Registers or unregisters a class to the SchematicToolsEdit component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicToolsEdit.Register(System.String)">
<summary>Registers a class to the SchematicToolsEdit component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SchematicToolsEdit.Unregister(System.String)">
<summary>Unregisters a class from the SchematicToolsEdit component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SearchResultsContextMenuCommands">
<summary>Registers or unregisters a class to the SearchResultsContextMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SearchResultsContextMenuCommands.Register(System.String)">
<summary>Registers a class to the SearchResultsContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SearchResultsContextMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the SearchResultsContextMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ServerObjectDescriptions">
<summary>Registers or unregisters a class to the ServerObjectDescriptions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ServerObjectDescriptions.Register(System.String)">
<summary>Registers a class to the ServerObjectDescriptions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ServerObjectDescriptions.Unregister(System.String)">
<summary>Unregisters a class from the ServerObjectDescriptions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.Shadows">
<summary>Registers or unregisters a class to the Shadows component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.Shadows.Register(System.String)">
<summary>Registers a class to the Shadows component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.Shadows.Unregister(System.String)">
<summary>Unregisters a class from the Shadows component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ShapeConstructorCommands">
<summary>Registers or unregisters a class to the ShapeConstructorCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ShapeConstructorCommands.Register(System.String)">
<summary>Registers a class to the ShapeConstructorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ShapeConstructorCommands.Unregister(System.String)">
<summary>Unregisters a class from the ShapeConstructorCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ShapefileFeatureClassPropertyPages">
<summary>Registers or unregisters a class to the ShapefileFeatureClassPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ShapefileFeatureClassPropertyPages.Register(System.String)">
<summary>Registers a class to the ShapefileFeatureClassPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ShapefileFeatureClassPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the ShapefileFeatureClassPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.ShapefileTablePropertyPages">
<summary>Registers or unregisters a class to the ShapefileTablePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ShapefileTablePropertyPages.Register(System.String)">
<summary>Registers a class to the ShapefileTablePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.ShapefileTablePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the ShapefileTablePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SketchMenuCommands">
<summary>Registers or unregisters a class to the SketchMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SketchMenuCommands.Register(System.String)">
<summary>Registers a class to the SketchMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SketchMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the SketchMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SketchToolMenuCommands">
<summary>Registers or unregisters a class to the SketchToolMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SketchToolMenuCommands.Register(System.String)">
<summary>Registers a class to the SketchToolMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SketchToolMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the SketchToolMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SketchToolPaletteCommands">
<summary>Registers or unregisters a class to the SketchToolPaletteCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SketchToolPaletteCommands.Register(System.String)">
<summary>Registers a class to the SketchToolPaletteCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SketchToolPaletteCommands.Unregister(System.String)">
<summary>Unregisters a class from the SketchToolPaletteCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SMFinders">
<summary>Registers or unregisters a class to the SMFinders component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SMFinders.Register(System.String)">
<summary>Registers a class to the SMFinders component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SMFinders.Unregister(System.String)">
<summary>Unregisters a class from the SMFinders component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SnapAgents">
<summary>Registers or unregisters a class to the SnapAgents component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SnapAgents.Register(System.String)">
<summary>Registers a class to the SnapAgents component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SnapAgents.Unregister(System.String)">
<summary>Unregisters a class from the SnapAgents component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.StandaloneTablePropertyPages">
<summary>Registers or unregisters a class to the StandaloneTablePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.StandaloneTablePropertyPages.Register(System.String)">
<summary>Registers a class to the StandaloneTablePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.StandaloneTablePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the StandaloneTablePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.StyleGalleryClasses">
<summary>Registers or unregisters a class to the StyleGalleryClasses component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.StyleGalleryClasses.Register(System.String)">
<summary>Registers a class to the StyleGalleryClasses component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.StyleGalleryClasses.Unregister(System.String)">
<summary>Unregisters a class from the StyleGalleryClasses component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.StyleImporter">
<summary>Registers or unregisters a class to the StyleImporter component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.StyleImporter.Register(System.String)">
<summary>Registers a class to the StyleImporter component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.StyleImporter.Unregister(System.String)">
<summary>Unregisters a class from the StyleImporter component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.StylePropertyPages">
<summary>Registers or unregisters a class to the StylePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.StylePropertyPages.Register(System.String)">
<summary>Registers a class to the StylePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.StylePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the StylePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxCommandBars">
<summary>Registers or unregisters a class to the SxCommandBars component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxCommandBars.Register(System.String)">
<summary>Registers a class to the SxCommandBars component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxCommandBars.Unregister(System.String)">
<summary>Unregisters a class from the SxCommandBars component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxCommands">
<summary>Registers or unregisters a class to the SxCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxCommands.Register(System.String)">
<summary>Registers a class to the SxCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxCommands.Unregister(System.String)">
<summary>Unregisters a class from the SxCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxContentsViews">
<summary>Registers or unregisters a class to the SxContentsViews component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxContentsViews.Register(System.String)">
<summary>Registers a class to the SxContentsViews component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxContentsViews.Unregister(System.String)">
<summary>Unregisters a class from the SxContentsViews component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxContextAnalyzers">
<summary>Registers or unregisters a class to the SxContextAnalyzers component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxContextAnalyzers.Register(System.String)">
<summary>Registers a class to the SxContextAnalyzers component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxContextAnalyzers.Unregister(System.String)">
<summary>Unregisters a class from the SxContextAnalyzers component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxDockableWindows">
<summary>Registers or unregisters a class to the SxDockableWindows component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxDockableWindows.Register(System.String)">
<summary>Registers a class to the SxDockableWindows component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxDockableWindows.Unregister(System.String)">
<summary>Unregisters a class from the SxDockableWindows component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxExtensions">
<summary>Registers or unregisters a class to the SxExtensions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxExtensions.Register(System.String)">
<summary>Registers a class to the SxExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxExtensions.Unregister(System.String)">
<summary>Unregisters a class from the SxExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxExtensionsJIT">
<summary>Registers or unregisters a class to the SxExtensionsJIT component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxExtensionsJIT.Register(System.String)">
<summary>Registers a class to the SxExtensionsJIT component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxExtensionsJIT.Unregister(System.String)">
<summary>Unregisters a class from the SxExtensionsJIT component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxFinders">
<summary>Registers or unregisters a class to the SxFinders component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxFinders.Register(System.String)">
<summary>Registers a class to the SxFinders component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxFinders.Unregister(System.String)">
<summary>Unregisters a class from the SxFinders component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxGraphicPropertyPages">
<summary>Registers or unregisters a class to the SxGraphicPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxGraphicPropertyPages.Register(System.String)">
<summary>Registers a class to the SxGraphicPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxGraphicPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the SxGraphicPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxImport3DFile">
<summary>Registers or unregisters a class to the SxImport3DFile component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxImport3DFile.Register(System.String)">
<summary>Registers a class to the SxImport3DFile component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxImport3DFile.Unregister(System.String)">
<summary>Unregisters a class from the SxImport3DFile component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxLayerPropertyPages">
<summary>Registers or unregisters a class to the SxLayerPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxLayerPropertyPages.Register(System.String)">
<summary>Registers a class to the SxLayerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxLayerPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the SxLayerPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxOptionsPropertyPages">
<summary>Registers or unregisters a class to the SxOptionsPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxOptionsPropertyPages.Register(System.String)">
<summary>Registers a class to the SxOptionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxOptionsPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the SxOptionsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxPalettes">
<summary>Registers or unregisters a class to the SxPalettes component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxPalettes.Register(System.String)">
<summary>Registers a class to the SxPalettes component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxPalettes.Unregister(System.String)">
<summary>Unregisters a class from the SxPalettes component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxPropertyPages">
<summary>Registers or unregisters a class to the SxPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxPropertyPages.Register(System.String)">
<summary>Registers a class to the SxPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the SxPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SxRootObjects">
<summary>Registers or unregisters a class to the SxRootObjects component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxRootObjects.Register(System.String)">
<summary>Registers a class to the SxRootObjects component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SxRootObjects.Unregister(System.String)">
<summary>Unregisters a class from the SxRootObjects component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.SymbolPropertyPages">
<summary>Registers or unregisters a class to the SymbolPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SymbolPropertyPages.Register(System.String)">
<summary>Registers a class to the SymbolPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.SymbolPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the SymbolPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TableFactory">
<summary>Registers or unregisters a class to the TableFactory component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TableFactory.Register(System.String)">
<summary>Registers a class to the TableFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TableFactory.Unregister(System.String)">
<summary>Unregisters a class from the TableFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TablePropertyPages">
<summary>Registers or unregisters a class to the TablePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TablePropertyPages.Register(System.String)">
<summary>Registers a class to the TablePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TablePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the TablePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TableWindowPropertyPages">
<summary>Registers or unregisters a class to the TableWindowPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TableWindowPropertyPages.Register(System.String)">
<summary>Registers a class to the TableWindowPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TableWindowPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the TableWindowPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TerrainPropertyPages">
<summary>Registers or unregisters a class to the TerrainPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TerrainPropertyPages.Register(System.String)">
<summary>Registers a class to the TerrainPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TerrainPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the TerrainPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TerrainRendererPropertyPages">
<summary>Registers or unregisters a class to the TerrainRendererPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TerrainRendererPropertyPages.Register(System.String)">
<summary>Registers a class to the TerrainRendererPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TerrainRendererPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the TerrainRendererPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TextBackground">
<summary>Registers or unregisters a class to the TextBackground component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TextBackground.Register(System.String)">
<summary>Registers a class to the TextBackground component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TextBackground.Unregister(System.String)">
<summary>Unregisters a class from the TextBackground component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TextBackgroundPropertyPages">
<summary>Registers or unregisters a class to the TextBackgroundPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TextBackgroundPropertyPages.Register(System.String)">
<summary>Registers a class to the TextBackgroundPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TextBackgroundPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the TextBackgroundPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TextFilePropertyPages">
<summary>Registers or unregisters a class to the TextFilePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TextFilePropertyPages.Register(System.String)">
<summary>Registers a class to the TextFilePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TextFilePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the TextFilePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TextSymbol">
<summary>Registers or unregisters a class to the TextSymbol component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TextSymbol.Register(System.String)">
<summary>Registers a class to the TextSymbol component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TextSymbol.Unregister(System.String)">
<summary>Unregisters a class from the TextSymbol component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TinDatasetPropertyPages">
<summary>Registers or unregisters a class to the TinDatasetPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TinDatasetPropertyPages.Register(System.String)">
<summary>Registers a class to the TinDatasetPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TinDatasetPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the TinDatasetPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TinRendererPropertyPages">
<summary>Registers or unregisters a class to the TinRendererPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TinRendererPropertyPages.Register(System.String)">
<summary>Registers a class to the TinRendererPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TinRendererPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the TinRendererPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TopologyPropertyPages">
<summary>Registers or unregisters a class to the TopologyPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TopologyPropertyPages.Register(System.String)">
<summary>Registers a class to the TopologyPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TopologyPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the TopologyPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TraceTasks">
<summary>Registers or unregisters a class to the TraceTasks component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TraceTasks.Register(System.String)">
<summary>Registers a class to the TraceTasks component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TraceTasks.Unregister(System.String)">
<summary>Unregisters a class from the TraceTasks component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TrainingMenuCommands">
<summary>Registers or unregisters a class to the TrainingMenuCommands component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TrainingMenuCommands.Register(System.String)">
<summary>Registers a class to the TrainingMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TrainingMenuCommands.Unregister(System.String)">
<summary>Unregisters a class from the TrainingMenuCommands component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.TransformationMethods">
<summary>Registers or unregisters a class to the TransformationMethods component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TransformationMethods.Register(System.String)">
<summary>Registers a class to the TransformationMethods component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.TransformationMethods.Unregister(System.String)">
<summary>Unregisters a class from the TransformationMethods component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.UtilityNetworkAnalysisGNPropertyPages">
<summary>Registers or unregisters a class to the UtilityNetworkAnalysisGNPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.UtilityNetworkAnalysisGNPropertyPages.Register(System.String)">
<summary>Registers a class to the UtilityNetworkAnalysisGNPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.UtilityNetworkAnalysisGNPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the UtilityNetworkAnalysisGNPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.UtilityNetworkAnalysisPropertyPages">
<summary>Registers or unregisters a class to the UtilityNetworkAnalysisPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.UtilityNetworkAnalysisPropertyPages.Register(System.String)">
<summary>Registers a class to the UtilityNetworkAnalysisPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.UtilityNetworkAnalysisPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the UtilityNetworkAnalysisPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.UtilityNetworkTasks">
<summary>Registers or unregisters a class to the UtilityNetworkTasks component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.UtilityNetworkTasks.Register(System.String)">
<summary>Registers a class to the UtilityNetworkTasks component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.UtilityNetworkTasks.Unregister(System.String)">
<summary>Unregisters a class from the UtilityNetworkTasks component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.VectorizationPropertyPages">
<summary>Registers or unregisters a class to the VectorizationPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.VectorizationPropertyPages.Register(System.String)">
<summary>Registers a class to the VectorizationPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.VectorizationPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the VectorizationPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.VersionPropertyPages">
<summary>Registers or unregisters a class to the VersionPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.VersionPropertyPages.Register(System.String)">
<summary>Registers a class to the VersionPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.VersionPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the VersionPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.VerticalCoordSysPropertyPages">
<summary>Registers or unregisters a class to the VerticalCoordSysPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.VerticalCoordSysPropertyPages.Register(System.String)">
<summary>Registers a class to the VerticalCoordSysPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.VerticalCoordSysPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the VerticalCoordSysPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.VideoExporterPropertyPages">
<summary>Registers or unregisters a class to the VideoExporterPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.VideoExporterPropertyPages.Register(System.String)">
<summary>Registers a class to the VideoExporterPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.VideoExporterPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the VideoExporterPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.WCSConnectionContextMenu">
<summary>Registers or unregisters a class to the WCSConnectionContextMenu component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WCSConnectionContextMenu.Register(System.String)">
<summary>Registers a class to the WCSConnectionContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WCSConnectionContextMenu.Unregister(System.String)">
<summary>Unregisters a class from the WCSConnectionContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.WCSConnectionPropertiesPage">
<summary>Registers or unregisters a class to the WCSConnectionPropertiesPage component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WCSConnectionPropertiesPage.Register(System.String)">
<summary>Registers a class to the WCSConnectionPropertiesPage component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WCSConnectionPropertiesPage.Unregister(System.String)">
<summary>Unregisters a class from the WCSConnectionPropertiesPage component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.WCSCoverageContextMenu">
<summary>Registers or unregisters a class to the WCSCoverageContextMenu component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WCSCoverageContextMenu.Register(System.String)">
<summary>Registers a class to the WCSCoverageContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WCSCoverageContextMenu.Unregister(System.String)">
<summary>Unregisters a class from the WCSCoverageContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.WCSDisconnectedConnectionPropertiesPage">
<summary>Registers or unregisters a class to the WCSDisconnectedConnectionPropertiesPage component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WCSDisconnectedConnectionPropertiesPage.Register(System.String)">
<summary>Registers a class to the WCSDisconnectedConnectionPropertiesPage component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WCSDisconnectedConnectionPropertiesPage.Unregister(System.String)">
<summary>Unregisters a class from the WCSDisconnectedConnectionPropertiesPage component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.WMSConnectionContextMenu">
<summary>Registers or unregisters a class to the WMSConnectionContextMenu component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WMSConnectionContextMenu.Register(System.String)">
<summary>Registers a class to the WMSConnectionContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WMSConnectionContextMenu.Unregister(System.String)">
<summary>Unregisters a class from the WMSConnectionContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.WMSConnectionPropertiesPage">
<summary>Registers or unregisters a class to the WMSConnectionPropertiesPage component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WMSConnectionPropertiesPage.Register(System.String)">
<summary>Registers a class to the WMSConnectionPropertiesPage component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WMSConnectionPropertiesPage.Unregister(System.String)">
<summary>Unregisters a class from the WMSConnectionPropertiesPage component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.WMSMapContextMenu">
<summary>Registers or unregisters a class to the WMSMapContextMenu component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WMSMapContextMenu.Register(System.String)">
<summary>Registers a class to the WMSMapContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WMSMapContextMenu.Unregister(System.String)">
<summary>Unregisters a class from the WMSMapContextMenu component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.WorkspaceDatasetExtensions">
<summary>Registers or unregisters a class to the WorkspaceDatasetExtensions component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WorkspaceDatasetExtensions.Register(System.String)">
<summary>Registers a class to the WorkspaceDatasetExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WorkspaceDatasetExtensions.Unregister(System.String)">
<summary>Unregisters a class from the WorkspaceDatasetExtensions component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.WorkspaceDomainsPropertyPages">
<summary>Registers or unregisters a class to the WorkspaceDomainsPropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WorkspaceDomainsPropertyPages.Register(System.String)">
<summary>Registers a class to the WorkspaceDomainsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WorkspaceDomainsPropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the WorkspaceDomainsPropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.WorkspaceFactory">
<summary>Registers or unregisters a class to the WorkspaceFactory component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WorkspaceFactory.Register(System.String)">
<summary>Registers a class to the WorkspaceFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WorkspaceFactory.Unregister(System.String)">
<summary>Unregisters a class from the WorkspaceFactory component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.CATIDs.WorkspacePropertyPages">
<summary>Registers or unregisters a class to the WorkspacePropertyPages component category.</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WorkspacePropertyPages.Register(System.String)">
<summary>Registers a class to the WorkspacePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be registered.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.CATIDs.WorkspacePropertyPages.Unregister(System.String)">
<summary>Unregisters a class from the WorkspacePropertyPages component category.</summary>
<param name="CLSID">The CLSID of the class to be unregistered.</param>
</member>
<member name="T:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer">
<summary>
An abstract base class for implementation of a custom globe layer
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.c_Version">
<summary>
The class version number
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.DeleteObject(System.IntPtr)">
<summary>
a win32 delete object reference
</summary>
<param name="hObject"></param>
<returns></returns>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_extent">
<summary>
Keep the layer's extent. Returned by the IGeoDataset::Extent property
</summary>
<remarks>The extent should be spatial-referenced to the DateFrame's spatial reference.
</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_spRef">
<summary>
Store the layer's underlying data spatial reference. Returned by IGeoDataset::SpatialReference.
</summary>
<remarks>This spatial reference should not be modified. Class member m_mapSpatialRef holds the map's
spatial reference and should be used in order to implement reprojection on the fly.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_mapSpatialRef">
<summary>
Store the maps's spatial reference. Set by ILayer::SpatialReference.
</summary>
<remarks>This spatial reference is set by the map. In order to support reprojection on the fly,
you should make sure that both class members m_spatialRef and m_mapSpatialRef are not null
and that each member holds different spatial reference (you can check that the factory code is different).
Then you can use method IGeometry.Project in order to reproject your geometries when the layer draw.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_legendGroup">
<summary>
The legend group to store the lagend class required by the TOC for the layer's renderer.
Returned by ILegendGroup::get_LegendGroup property.
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_sName">
<summary>
Layer's name. Returned by ILayer::Name property
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_bVisible">
<summary>
Flag which determines whether the layers is visible. Returned by ILayer::Visible
</summary>
<remarks>You should use this member in your inherited class in the Draw method.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_bCached">
<summary>
determines whether the layers is cached. Returned by ILayer::Cached.
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_bValid">
<summary>
Flag thich determine whether the layer is valid (connected to its data source, has valid information etc.).
Returned by ILAyer::Valid.
</summary>
<remarks>You can use this flag to determine for example whether the layer can be available or not.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_bDrawDirty">
<summary>
Indicates if the layer drawing properties are dirty.
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_dblMaxScale">
<summary>
Keep the maximum scale value at which the layer will display
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_dblMinScale">
<summary>
Keep the minimum scale value at which the layer will display
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_ShowTips">
<summary>
determines whether the layers is supposed to show its MapTips
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_smallBitmap">
<summary>
The bitmap which represent the small image of the layer.
</summary>
<remarks>Shown in ArcCatalog or in the identify dialog</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_largeBitmap">
<summary>
The bitmap which represent the large image of the layer.
</summary>
<remarks>This image will be shown in ArcCatalog when in Thumbnail view</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_hSmallBitmap">
<summary>
Handle for the small bitmap
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_hLargeBitmap">
<summary>
Handle for the large bitmap
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_extensions">
<summary>
An arraylist to store the layer's extensions.
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.m_uid">
<summary>
The layer's UID
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.#ctor">
<summary>
Class default constructor
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.Load(ESRI.ArcGIS.esriSystem.IVariantStream)">
<summary>
Loads the object properties from the stream.
</summary>
<param name="Stream"></param>
<remarks>The Load method must read the data from the stream in the same order the data was
written to the stream in the Save method.
Streams are sequential; you mut ensure that your data is saved and loaded in the correct order,
so that the correct data is written to the correct member.
</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.Save(ESRI.ArcGIS.esriSystem.IVariantStream)">
<summary>
Saves the object properties to the stream.
</summary>
<param name="Stream"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.get_TipText(System.Double,System.Double,System.Double)">
<summary>
Map tip text at the specified location.
</summary>
<param name="X"></param>
<param name="Y"></param>
<param name="Tolerance"></param>
<returns>The text string that gets displayed as a map tip if ShowTips = true.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.Draw(ESRI.ArcGIS.esriSystem.esriDrawPhase,ESRI.ArcGIS.Display.IDisplay,ESRI.ArcGIS.esriSystem.ITrackCancel)">
<summary>
Draws the layer to the specified display for the given draw phase.
</summary>
<param name="drawPhase"></param>
<param name="Display"></param>
<param name="trackCancel"></param>
<remarks>This method draws the layer to the Display for the specified DrawPhase.
Use the TrackCancel object to allow the drawing of the layer to be interrupted by the user.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.RemoveExtension(System.Int32)">
<summary>
Removes the specified extension.
</summary>
<param name="Index"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.AddExtension(System.Object)">
<summary>
Adds a new extension.
</summary>
<param name="ext"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.get_Extension(System.Int32)">
<summary>
The extension at the specified index.
</summary>
<param name="Index"></param>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.get_LegendGroup(System.Int32)">
<summary>
Legend group at the specified index.
</summary>
<param name="Index"></param>
<returns></returns>
<remarks>The content and number of legend groups is determined by the implementation of the renderer,
consequently this property is read only.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.DrawImmediate(ESRI.ArcGIS.GlobeCore.IGlobeViewer)">
<summary>
For custom OpenGL layers, perform immediate drawing.
</summary>
<param name="pGlobeViewer"></param>
<remarks>This is where you should add your drawings on the Globe. This method must be overriden in
your inheriting class. DrawImmediate together with IGlobeDisplayEvents::BeforeDraw and IGlobeDisplayEvents::AfterDraw
is the only safe place where the OpenGL state is ready for custom actions.</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.GetTile(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[]@)">
<summary>
Gets a rasterized data tile for the given globe tesselation coordinates.
</summary>
<param name="tilesize"></param>
<param name="face"></param>
<param name="level"></param>
<param name="row"></param>
<param name="col"></param>
<param name="pData"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.Hit(System.Int32,ESRI.ArcGIS.Analyst3D.IHit3D)">
<summary>
The layer is hit by a picking operation.
</summary>
<param name="hitObjectID"></param>
<param name="pHit3D"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.Dispose">
<summary>
Dispose the layer
</summary>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.ConvertToSupportedObject(ESRI.ArcGIS.esriSystem.esriArcGISVersion)">
<summary>
Convert the object to another object that is supported. This method is not implemented in this version.
</summary>
<param name="docVersion"></param>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.IsSupportedAtVersion(ESRI.ArcGIS.esriSystem.esriArcGISVersion)">
<summary>
Is this object valid at the given document version.
</summary>
<param name="docVersion"></param>
<returns></returns>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.Extent">
<summary>
The layers geodataset extent which is a union of the extents of all
the items of the layer
</summary>
<remarks>In your inheriting class, consider the following code to calculate the layer's extent:
<code>
public override IEnvelope Extent
{
get
{
m_extent = GetLayerExtent();
if (null == m_extent )
return null;
IEnvelope env = ((IClone)m_extent ).Clone() as IEnvelope;
return env;
}
}
private IEnvelope GetLayerExtent()
{
if (null == base.m_spRef)
{
base.m_spRef = CreateGeographicSpatialReference();
}
IEnvelope env = new EnvelopeClass();
env.SpatialReference = base.m_spRef;
IPoint point = new PointClass();
point.SpatialReference = m_spRef;
foreach (DataRow r in m_table.Rows)
{
point.Y = Convert.ToDouble(r[3]);
point.X = Convert.ToDouble(r[4]);
env.Union(point.Envelope);
}
return env;
}
</code>
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.SpatialReference">
<summary>
The spatial reference of the underlying data.
</summary>
<remarks>The property must return the underlying data spatial reference and
must not reporoject it into the layer's spatial reference </remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.LastMaximumScale">
<summary>
Last maximum scale setting used by layer.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.LastMinimumScale">
<summary>
Last minimum scale setting used by layer.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.LayerDescription">
<summary>
Description for the layer.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.ID">
<summary>
The ID of the object.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.ShowTips">
<summary>
Indicates if the layer shows map tips.
</summary>
<remarks>Indicates whether or not map tips are shown for the layer.
If set to True, then map tips will be shown for the layer.
You can determine the text that will be shown via TipText.
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.AreaOfInterest">
<summary>
The default area of interest for the layer. Returns the spatial-referenced extent of the layer.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.Visible">
<summary>
Indicates if the layer is currently visible.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.Cached">
<summary>
Indicates if the layer needs its own display cache.
</summary>
<remarks>This property indicates whether or not the layer requires its own display cache.
If this property is True, then the Map will use a separate display cache for the layer so
that it can be refreshed indpendently of other layers.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.MinimumScale">
<summary>
Minimum scale (representative fraction) at which the layer will display.
</summary>
<remarks>Specifies the minimum scale at which the layer will be displayed.
This means that if you zoom out beyond this scale, the layer will not display.
For example, specify 1000 to have the layer not display when zoomed out beyond 1:1000.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.Valid">
<summary>
Indicates if the layer is currently valid.
</summary>
<remarks>The valid property indicates if the layer is currently valid.
Layers that reference feature classes are valid when they hold a reference to a valid feature class.
The property does not however validate the integrity of the feature classes reference to the database.
Therefore, in rare situations if a datasource is removed after a layer is initialized,
the layer will report itself as valid but query attempts to the data source will error due to the lack
of underlying data.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.Name">
<summary>
The Layer name.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.MaximumScale">
<summary>
Maximum scale (representative fraction) at which the layer will display.
</summary>
<remarks>Specifies the maximum scale at which the layer will be displayed.
This means that if you zoom in beyond this scale, the layer will not display.
For example, specify 500 to have the layer not display when zoomed in beyond 1:500.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.SupportedDrawPhases">
<summary>
Supported draw phases.
</summary>
<remarks>Indicates the draw phases supported by the layer (esriDPGeography, esriDPAnnotation,
esriDPSelection, or any combination of the three).
The supported draw phases are defined by esriDrawPhase.
When multiple draw phases are supported, the sum of the constants is used.
For example, if SupportedDrawPhases = 3 then the layer supports drawing in the geography and annotation phases.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.ESRI#ArcGIS#Carto#ILayer#SpatialReference">
<summary>
Spatial reference for the layer.
</summary>
<remarks>This property is only used for map display, setting this property does not
change the spatial reference of the layer's underlying data.
The ArcGIS framework uses this property to pass the spatial reference from the map
to the layer in order to support on-the-fly projection.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.ExtensionCount">
<summary>
Number of extensions.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.SmallImage">
<summary>
Small image that represents the layer.
</summary>
<remarks>The icon used to represent the layer in ArcCatalog's 'List' and 'Details' views.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.LargeSelectedImage">
<summary>
Large image that represents the layer when it is selected.
</summary>
<remarks>The icon used to represent the layer when it is selected in ArcCatalog's 'Large Icon' view.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.SmallSelectedImage">
<summary>
Small image that represents the layer when it is selected.
</summary>
<remarks>The icon used to represent the layer when it is selected in ArcCatalog's 'List' and 'Details' views.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.LargeImage">
<summary>
Large image that represents the layer.
</summary>
<remarks>The icon used to represent the layer in ArcCatalog's 'Large Icon' view.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.LegendGroupCount">
<summary>
Number of legend groups contained by the object.
</summary>
<remarks>The number of legend groups is determined by the implementation of the renderer,
consequently this property is read only. For example, SimpleRenderer has one group,
while a BiUniqueValueRenderer has any number of groups.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.LegendItem">
<summary>
Optional. Defines legend formatting for layer rendered with this object.
</summary>
<remarks>Layer or renderer legend information is further formatted for display in ArcMap legends.
A renderer can override this formatting by returning a LegendItem for this property.
ESRI renderers typically do not return anything for this property. With this configuration,
legend formatting becomes a user or developer choice on the legend object.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.SymbolsAreGraduated">
<summary>
Indicates if symbols are graduated.
</summary>
<remarks>For example the proportional symbol renderer returns True for this property.
You can use this property to distinguish between a layer symbolized with graduated color or
graduated symbol type layer symbology. Both of these symbolizations use a ClassBreaksRenderer,
but only a graduated symbol symbolization will return True for this property.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.DrawType">
<summary>
The custom draw method.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.MinimumCellSize">
<summary>
For rasterized types, defines highest resolution. Zero value indicates that globe-generated default value should be used.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.SymbologyScalingFactor">
<summary>
The symbol scale factor for the custom rasterized type.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.UseCache">
<summary>
The option to use Globe's disk caching.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.HandlesLocalOrigin">
<summary>
The option to use a local coordinate system origin for high precision drawing
</summary>
<remarks>Use this option (set to 'true') in case where you need to draw elements which
are either small and close to the globe's surface.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseCustomGlobeLayer.LocalOrigin">
<summary>
The local coordinate system origin for high precision drawing
</summary>
<remarks>In case of setting the HandlesLocalOrigin to 'true', The point of origin passed by the Globe.</remarks>
</member>
<member name="T:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer">
<summary>
BaseDynamicLayer serves as a BaseClass for DynamicLayers.
</summary>
<remarks>In order to implemet a DynamicLayer using this base-class, the user has to
inherit this base class and override method DrawDynamicLayer().</remarks> //BaseCustomLayer
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.c_Version">
<summary>
The class version number
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_extent">
<summary>
Keep the layer's extent. Returned by the IGeoDataset::Extent property
</summary>
<remarks>The extent should be spatial-referenced to the DateFrame's spatial reference.
</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_spatialRef">
<summary>
Store the layer's underlying data spatial reference. Returned by IGeoDataset::SpatialReference.
</summary>
<remarks>This spatial reference should not be modified. Class member m_mapSpatialRef holds the map's
spatial reference and should be used in order to implement reprojection on the fly.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_mapSpatialRef">
<summary>
Store the maps's spatial reference. Set by ILayer::SpatialReference.
</summary>
<remarks>This spatial reference is set by the map. In order to support reprojection on the fly,
you should make sure that both class members m_spatialRef and m_mapSpatialRef are not null
and that each member holds different spatial reference (you can check that the factory code is different).
Then you can use method IGeometry.Project in order to reproject your geometries when the layer draw.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_sName">
<summary>
Layer's name. Returned by ILayer::Name property
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_visible">
<summary>
Flag which determines whether the layers is visible. Returned by ILayer::Visible
</summary>
<remarks>You should use this member in your inherited class in the Draw method.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_IsCached">
<summary>
determines whether the layers is cached
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_bValid">
<summary>
Flag thich determine whether the layer is valid (connected to its data source, has valid information etc.).
Returned by ILAyer::Valid.
</summary>
<remarks>You can use this flag to determine for example whether the layer can be available or not.</remarks>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_MaximumScale">
<summary>
Keep the maximum scale value at which the layer will display
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_MinimumScale">
<summary>
Keep the minimum scale value at which the layer will display
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_ShowTips">
<summary>
determines whether the layers is supposed to show its MapTips
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_bIsImmediateDirty">
<summary>
the layer dirty flag which determine whether its display list need to be recreate
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_bIsCompiledDirty">
<summary>
the layer dirty flag which determine whether its display list need to be recreate
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_nRecompileRate">
<summary>
The rate in which the DynamicDisplay recompile its display lists
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_uid">
<summary>
The layer's UID
</summary>
</member>
<member name="F:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.m_extensions">
<summary>
An arraylist to store the layer's extensions.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.#ctor">
<summary>
Default constructor
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.Load(ESRI.ArcGIS.esriSystem.IVariantStream)">
<summary>
Loads the object properties from the stream.
</summary>
<param name="Stream"></param>
<remarks>The Load method must read the data from the stream in the same order the data was
written to the stream in the Save method.
Streams are sequential; you mut ensure that your data is saved and loaded in the correct order,
so that the correct data is written to the correct member.
</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.Save(ESRI.ArcGIS.esriSystem.IVariantStream)">
<summary>
Saves the object properties to the stream.
</summary>
<param name="Stream"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.get_TipText(System.Double,System.Double,System.Double)">
<summary>
Map tip text at the specified location.
</summary>
<param name="X"></param>
<param name="Y"></param>
<param name="Tolerance"></param>
<returns>The text string that gets displayed as a map tip if ShowTips = true.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.Draw(ESRI.ArcGIS.esriSystem.esriDrawPhase,ESRI.ArcGIS.Display.IDisplay,ESRI.ArcGIS.esriSystem.ITrackCancel)">
<summary>
Draws the layer to the specified display for the given draw phase.
</summary>
<param name="drawPhase"></param>
<param name="Display"></param>
<param name="trackCancel"></param>
<remarks>This method draws the layer to the Display for the specified DrawPhase.
Use the TrackCancel object to allow the drawing of the layer to be interrupted by the user.
In order to implement you inheriting class, you must override this method</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.DrawDynamicLayer(ESRI.ArcGIS.Display.esriDynamicDrawPhase,ESRI.ArcGIS.Display.IDisplay,ESRI.ArcGIS.Display.IDynamicDisplay)">
<summary>
The dynamic layer draw method. You should implement this method in order to allow you layer to draw while the map is in dynamic mode
</summary>
<param name="DynamicDrawPhase">the current drawphase of the drawing</param>
<param name="Display">the ActiveView's display</param>
<param name="DynamicDisplay">the ActiveView's dynamic display</param>
<remarks>This method is set as abstract, which means that the inherited class must override it</remarks>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.get_DynamicLayerDirty(ESRI.ArcGIS.Display.esriDynamicDrawPhase)">
<summary>
get the dirty flag of the layer
</summary>
<param name="DynamicDrawPhase"></param>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.set_DynamicLayerDirty(ESRI.ArcGIS.Display.esriDynamicDrawPhase,System.Boolean)">
<summary>
set the dirty flag of the layer
</summary>
<param name="DynamicDrawPhase"></param>
<param name="Dirty"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.RemoveExtension(System.Int32)">
<summary>
Removes the specified extension.
</summary>
<param name="Index"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.AddExtension(System.Object)">
<summary>
Adds a new extension.
</summary>
<param name="ext"></param>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.get_Extension(System.Int32)">
<summary>
The extension at the specified index.
</summary>
<param name="Index"></param>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.Dispose">
<summary>
Dispose the layer
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.PrepareForPublishing">
<summary>
Prepare the layer for the publishing process.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.get_DataDetails(System.String)">
<summary>
Details of the layer's data.
</summary>
<param name="bsPadding"></param>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.ConvertToSupportedObject(ESRI.ArcGIS.esriSystem.esriArcGISVersion)">
<summary>
Convert the object to another object that is supported. This method is not implemented in this version.
</summary>
<param name="docVersion"></param>
<returns></returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.IsSupportedAtVersion(ESRI.ArcGIS.esriSystem.esriArcGISVersion)">
<summary>
Is this object valid at the given document version.
</summary>
<param name="docVersion"></param>
<returns></returns>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.Extent">
<summary>
The layers geodataset extent which is a union of the extents of all
the items of the layer
</summary>
<remarks>In your inheriting class, consider the following code to calculate the layer's extent:
<code>
public override IEnvelope Extent
{
get
{
m_extent = GetLayerExtent();
if (null == m_extent )
return null;
IEnvelope env = ((IClone)m_extent ).Clone() as IEnvelope;
if(null != m_layerSpatialRef)
env.Project(m_mapSpatialRef);
return env;
}
}
private IEnvelope GetLayerExtent()
{
if (null == base.m_spRef)
{
base.m_spRef = CreateGeographicSpatialReference();
}
IEnvelope env = new EnvelopeClass();
env.SpatialReference = base.m_spRef;
IPoint point = new PointClass();
point.SpatialReference = m_spRef;
foreach (DataRow r in m_table.Rows)
{
point.Y = Convert.ToDouble(r["Y"]);
point.X = Convert.ToDouble(r["X"]);
env.Union(point.Envelope);
}
return env;
}
</code>
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.SpatialReference">
<summary>
The spatial reference of the underlying data.
</summary>
<remarks>The property must return the underlying data spatial reference and
must not reporoject it into the layer's spatial reference </remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.ID">
<summary>
The ID of the object.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.ShowTips">
<summary>
Indicates if the layer shows map tips.
</summary>
<remarks>Indicates whether or not map tips are shown for the layer.
If set to True, then map tips will be shown for the layer.
You can determine the text that will be shown via TipText.
</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.AreaOfInterest">
<summary>
The default area of interest for the layer. Returns the spatial-referenced extent of the layer.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.Visible">
<summary>
Indicates if the layer is currently visible.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.Cached">
<summary>
Indicates if the layer needs its own display cache.
</summary>
<remarks>This property indicates whether or not the layer requires its own display cache.
If this property is True, then the Map will use a separate display cache for the layer so
that it can be refreshed indpendently of other layers.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.MinimumScale">
<summary>
Minimum scale (representative fraction) at which the layer will display.
</summary>
<remarks>Specifies the minimum scale at which the layer will be displayed.
This means that if you zoom out beyond this scale, the layer will not display.
For example, specify 1000 to have the layer not display when zoomed out beyond 1:1000.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.Valid">
<summary>
Indicates if the layer is currently valid.
</summary>
<remarks>The valid property indicates if the layer is currently valid.
Layers that reference feature classes are valid when they hold a reference to a valid feature class.
The property does not however validate the integrity of the feature classes reference to the database.
Therefore, in rare situations if a datasource is removed after a layer is initialized,
the layer will report itself as valid but query attempts to the data source will error due to the lack
of underlying data.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.Name">
<summary>
The Layer name.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.MaximumScale">
<summary>
Maximum scale (representative fraction) at which the layer will display.
</summary>
<remarks>Specifies the maximum scale at which the layer will be displayed.
This means that if you zoom in beyond this scale, the layer will not display.
For example, specify 500 to have the layer not display when zoomed in beyond 1:500.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.SupportedDrawPhases">
<summary>
Supported draw phases.
</summary>
<remarks>Indicates the draw phases supported by the layer (esriDPGeography, esriDPAnnotation,
esriDPSelection, or any combination of the three).
The supported draw phases are defined by esriDrawPhase.
When multiple draw phases are supported, the sum of the constants is used.
For example, if SupportedDrawPhases = 3 then the layer supports drawing in the geography and annotation phases.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.ESRI#ArcGIS#Carto#ILayer#SpatialReference">
<summary>
Spatial reference for the layer.
</summary>
<remarks>This property is only used for map display, setting this property does not
change the spatial reference of the layer's underlying data.
The ArcGIS framework uses this property to pass the spatial reference from the map
to the layer in order to support on-the-fly projection.</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.DynamicRecompileRate">
<summary>
This is the rate in which the DynamicDisplay builds the Display-Lists of the 'compiled'
DrawPhase
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.LastMaximumScale">
<summary>
Last maximum scale setting used by layer.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.LastMinimumScale">
<summary>
Last minimum scale setting used by layer.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.LayerDescription">
<summary>
Description for the layer.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.ExtensionCount">
<summary>
Number of extensions.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.DataValid">
<summary>
Indicates if the data for the layer is currently valid.
</summary>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.PublishingDescription">
<summary>
The layer description reported to the publisher.
</summary>
<remarks>since dynamic layers do not support publishing there is no point in returning publishing description</remarks>
</member>
<member name="P:ESRI.ArcGIS.ADF.BaseClasses.BaseDynamicLayer.SupportsPublishing">
<summary>
Indicates if the layer supports the publishing process.
</summary>
<remarks>Dynamic layers do not support publishing therefore it should always return false</remarks>
</member>
<member name="T:ESRI.ArcGIS.ADF.ProjectionEngineCodeRanges">
<summary>
The class supports the .NET ADF infrastructure and is not intended to be used directly from your code.
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.ProjectionEngineCodeRanges.IsProjected(System.Int32)">
<summary>
Is id a projected coordinate.
</summary>
<param name="wkid">id.</param>
<returns>true if projected, false otherwise.</returns>
</member>
<member name="M:ESRI.ArcGIS.ADF.ProjectionEngineCodeRanges.IsGeographic(System.Int32)">
<summary>
Is id a geographic coordinate.
</summary>
<param name="wkid">id.</param>
<returns>true if IsGeographic, false otherwise.</returns>
</member>
<member name="T:ESRI.ArcGIS.ADF.RangeValidator">
<summary>
<strong>The class supports the .NET ADF infrastructure and is not intended to be used directly from your code.</strong>
</summary>
</member>
<member name="M:ESRI.ArcGIS.ADF.RangeValidator.VerifyNonNull(System.Object)">
<summary>
Verify the object is not null.
</summary>
<param name="obj">Object</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.RangeValidator.Validate(System.Double,System.Double,System.Double)">
<summary>
Validate value.
</summary>
<param name="minValue">Minimum value.</param>
<param name="maxValue">Maximum value.</param>
<param name="theValue">Actual value.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.RangeValidator.Validate(System.Double,System.Double)">
<summary>
Validate value.
</summary>
<param name="minValue">Minimum value.</param>
<param name="theValue">Actual value.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.RangeValidator.Validate(System.Int32,System.Int32,System.Int32)">
<summary>
Validate value.
</summary>
<param name="minValue">Minimum value.</param>
<param name="maxValue">Maximum value.</param>
<param name="theValue">Actual value.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.RangeValidator.Validate(System.Int32,System.Int32)">
<summary>
Validate value.
</summary>
<param name="minValue">Minimum value.</param>
<param name="theValue">Actual value.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.RangeValidator.Validate(System.UInt32,System.UInt32,System.UInt32)">
<summary>
Validate value.
</summary>
<param name="minValue">Minimum value.</param>
<param name="maxValue">Maximum value.</param>
<param name="theValue">Actual value.</param>
</member>
<member name="M:ESRI.ArcGIS.ADF.RangeValidator.Validate(System.UInt32,System.UInt32)">
<summary>
Validate value.
</summary>
<param name="minValue">Minimum value.</param>
<param name="theValue">Actual value.</param>
</member>
</members>
</doc>