ProvideSettingAttribute Class

Definition

Registers settings owned by a package. All registered settings must be persisted via SVsSettingsPersistenceManager. Settings that are persisted using SVsSettingsPersistenceManager but not registered will be private by default.

public ref class ProvideSettingAttribute sealed : Microsoft::VisualStudio::Shell::RegistrationAttribute
public ref class ProvideSettingAttribute sealed : Microsoft::VisualStudio::Shell::RegistrationAttribute
[System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=true, Inherited=true)]
public sealed class ProvideSettingAttribute : Microsoft.VisualStudio.Shell.RegistrationAttribute
[<System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=true, Inherited=true)>]
type ProvideSettingAttribute = class
    inherit RegistrationAttribute
Public NotInheritable Class ProvideSettingAttribute
Inherits RegistrationAttribute
Inheritance
ProvideSettingAttribute
Attributes

Constructors

ProvideSettingAttribute(String, SettingScope, SettingStorage)

Declares one or more settings provided by a package.

ProvideSettingAttribute(String, SettingScope, SettingStorage, String, String, String, String, String)

Declares one or more settings provided by a package.

Properties

DescriptionResourceId
IsRemotable

Gets or sets a value controlling whether this setting will be applied to the remote instance instead of the local instance when connected.

IsWritableByGuests
JsonSchemaResourceId
Name

Gets the name of the setting.

NameResourceId
PackageGuid
Scope

Gets the scope of the setting.

SearchKeywordsResourceId
Storage

Gets the storage of the setting.

TypeId

Gets the current instance of this attribute.

(Inherited from RegistrationAttribute)

Methods

GetPackageRegKeyPath(Guid)

Gets the registry path (relative to the registry root of the application) of the VSPackage.

(Inherited from RegistrationAttribute)
Register(RegistrationAttribute+RegistrationContext)

Called to register this attribute with the given context. The context contains the location where the registration information should be placed. it also contains such as the type being registered, and path information.

Unregister(RegistrationAttribute+RegistrationContext)

Unregister this attribute

Applies to