IVsWritableSettingsStore Methods

 

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.10.0 (in Microsoft.VisualStudio.Shell.Interop.10.0.dll)

NameDescription
System_CAPS_pubmethodCollectionExists(String^, Int32)

Determines whether a named collection exists.

System_CAPS_pubmethodCreateCollection(String^)

Creates a new collection.

System_CAPS_pubmethodDeleteCollection(String^)

Deletes a collection, as well as all its properties and sub-collections.

System_CAPS_pubmethodDeleteProperty(String^, String^)

Deletes a property in a collection.

System_CAPS_pubmethodGetBinary(String^, String^, UInt32, array<Byte>^, array<UInt32>^)

Returns the value of a property of type SettingsType_Binary.

System_CAPS_pubmethodGetBool(String^, String^, Int32)

Returns a boolean type property.

System_CAPS_pubmethodGetBoolOrDefault(String^, String^, Int32, Int32)

Returns a boolean type property value or a specified default value.

System_CAPS_pubmethodGetInt(String^, String^, Int32)

Returns an integer type property value.

System_CAPS_pubmethodGetInt64(String^, String^, Int64)

Returns a 64-bit integer type property value.

System_CAPS_pubmethodGetInt64OrDefault(String^, String^, Int64, Int64)

Returns a 64-bit integer value or a specified default value.

System_CAPS_pubmethodGetIntOrDefault(String^, String^, Int32, Int32)

Returns an integer type property or a specified default value.

System_CAPS_pubmethodGetLastWriteTime(String^, array<SYSTEMTIME>^)

Returns the last time a value was written in a specified collection, including all its properties and sub-collections.

System_CAPS_pubmethodGetPropertyCount(String^, UInt32)

Returns the number of properties in a specified collection.

System_CAPS_pubmethodGetPropertyName(String^, UInt32, String^)

Returns the name of a property.

System_CAPS_pubmethodGetPropertyType(String^, String^, UInt32)

Returns the type of a specified property.

System_CAPS_pubmethodGetString(String^, String^, String^)

Returns a string type property value.

System_CAPS_pubmethodGetStringOrDefault(String^, String^, String^, String^)

Returns a string type property value or a given default string.

System_CAPS_pubmethodGetSubCollectionCount(String^, UInt32)

Returns the number of sub-collections in the specified collections.

System_CAPS_pubmethodGetSubCollectionName(String^, UInt32, String^)

Returns the name of a sub collection.

System_CAPS_pubmethodGetUnsignedInt(String^, String^, UInt32)

Returns an unsigned integer property value.

System_CAPS_pubmethodGetUnsignedInt64(String^, String^, UInt64)

Returns a 64-bit unsigned long integer property value.

System_CAPS_pubmethodGetUnsignedInt64OrDefault(String^, String^, UInt64, UInt64)

Returns a 64-bit unsigned long integer property of a given default value.

System_CAPS_pubmethodGetUnsignedIntOrDefault(String^, String^, UInt32, UInt32)

Returns an unsigned integer property or a given default value.

System_CAPS_pubmethodPropertyExists(String^, String^, Int32)

Determines whether a property exists in a given collection.

System_CAPS_pubmethodSetBinary(String^, String^, UInt32, array<Byte>^)

Sets the value of a binary property with the specified byte array. If the previous data type of the property is not SettingsType_Binary, this method overwrites it. If the property does not exist, it creates one

System_CAPS_pubmethodSetBool(String^, String^, Int32)

Sets the value of a boolean property. If the previous data type of the property is not SettingsType_Int, this method overwrites it. If the property does not, exist, it creates one.

System_CAPS_pubmethodSetInt(String^, String^, Int32)

Sets the value of an integer property. If the previous data type of the property is not SettingsType_Int, this method overwrites it. If the property does not exist, it creates one.

System_CAPS_pubmethodSetInt64(String^, String^, Int64)

Sets the value of a 64-bit integer property. If the previous data type of the property is not SettingsType_Int64, it overwrites it. If the property does not exist it creates one.

System_CAPS_pubmethodSetString(String^, String^, String^)

Sets the value of a string property. If the previous data type of the property is not SettingsType_String, this method overwrites it. If the property does not exist, it creates one.

System_CAPS_pubmethodSetUnsignedInt(String^, String^, UInt32)

Sets the value of an unsigned integer property. If the previous data type of the property is not SettingsType_Int, this method overwrites it. If the property does not exist, it creates one.

System_CAPS_pubmethodSetUnsignedInt64(String^, String^, UInt64)

Sets the value of an unsigned 64-bit integer property. If theprevious data type of the property is not SettingsType_Int64, this method overwrites it. If the property does not exist, it creates one.

Return to top
Show: