Bagikan melalui


WritableSettingsStore.SetInt64 Method

Updates the value of the specified property to the given long value while setting its data type to [!:SettingsType.Int64].

Namespace:  Microsoft.VisualStudio.Settings
Assemblies:   Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)
  Microsoft.VisualStudio.Settings (in Microsoft.VisualStudio.Settings.dll)

Syntax

'Declaration
Public MustOverride Sub SetInt64 ( _
    collectionPath As String, _
    propertyName As String, _
    value As Long _
)
public abstract void SetInt64(
    string collectionPath,
    string propertyName,
    long value
)
public:
virtual void SetInt64(
    String^ collectionPath, 
    String^ propertyName, 
    long long value
) abstract
abstract SetInt64 : 
        collectionPath:string * 
        propertyName:string * 
        value:int64 -> unit
public abstract function SetInt64(
    collectionPath : String, 
    propertyName : String, 
    value : long
)

Parameters

  • collectionPath
    Type: String

    Path of the collection of the property.

  • propertyName
    Type: String

    Name of the property.

  • value
    Type: Int64

    New value of the property.

Exceptions

Exception Condition
ArgumentException

If the collection does not exist, this exception is thrown.

Remarks

If the previous data type of the property is different, it overwrites it.

If the property does not exist it creates one.

.NET Framework Security

See Also

Reference

WritableSettingsStore Class

Microsoft.VisualStudio.Settings Namespace