RegisterAutoLoadAttribute Class
Note: This API is now obsolete.
Registers the VSPackage as an extender that is automatically loaded in response to a particular context GUID. This class cannot be inherited.
Namespace: Microsoft.VisualStudio.Shell
Assemblies: Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)
Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
Microsoft.VisualStudio.Shell.9.0 (in Microsoft.VisualStudio.Shell.9.0.dll)
Syntax
声明
<ObsoleteAttribute("RegisterAutoLoadAttribute has been deprecated. Please use ProvideAutoLoadAttribute instead.")> _
<AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple := True, Inherited := True)> _
Public NotInheritable Class RegisterAutoLoadAttribute _
Inherits RegistrationAttribute
用法
Dim instance As RegisterAutoLoadAttribute
[ObsoleteAttribute("RegisterAutoLoadAttribute has been deprecated. Please use ProvideAutoLoadAttribute instead.")]
[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
public sealed class RegisterAutoLoadAttribute : RegistrationAttribute
[ObsoleteAttribute(L"RegisterAutoLoadAttribute has been deprecated. Please use ProvideAutoLoadAttribute instead.")]
[AttributeUsageAttribute(AttributeTargets::Class, AllowMultiple = true, Inherited = true)]
public ref class RegisterAutoLoadAttribute sealed : public RegistrationAttribute
[<SealedAttribute>]
[<ObsoleteAttribute("RegisterAutoLoadAttribute has been deprecated. Please use ProvideAutoLoadAttribute instead.")>]
[<AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple = true, Inherited = true)>]
type RegisterAutoLoadAttribute =
class
inherit RegistrationAttribute
end
public final class RegisterAutoLoadAttribute extends RegistrationAttribute
Remarks
Basic Usage
RegisterAutoLoadAttribute registers the VSPackage as an extender (an object which implements IExtenderProvider. The GUID passed to the constructor determines the context in which the package loads. To use RegisterAutoLoadAttribute, place it on a package class, such as Package or a class that implements IVsPackage.
This attribute class is only used to provide data for external registration tools. It does not have any effect on the runtime behavior of the VSPackage.
备注
Visual C# automatically appends the word "Attribute" to the name of any attribute class. In Visual C# code, refer to this attribute as RegisterAutoLoad.
备注
The GUIDS for the Visual C# and Visual Basic project types are: Visual C#: {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} and Visual Basic : {F184B08F-C81C-45F6-A57F-5ABD9991F28F}.
Registry Entries
The following registry entries are created by RegisterAutoLoadAttribute:
<VSROOT>\AutoLoadPackages\{ContextGuid}
<VSROOT>\AutoLoadPackages\{ContextGuid}\{PackageGuid}=0
Samples
You can find implementations of the RegisterAutoLoadAttribute class in the managed samples. The standard location for this and all other attributes used for automatic registration is adjacent to the implementation of the Package class in VsPkg.cs, VsPkg.vb, or VsPkg.cpp, depending on the language used in the sample.
Inheritance Hierarchy
System.Object
System.Attribute
Microsoft.VisualStudio.Shell.RegistrationAttribute
Microsoft.VisualStudio.Shell.RegisterAutoLoadAttribute
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.