SettingsStore.GetInt32 Method (String, String, Int32)
Returns the value of the requested property whose data type is [!:SettingsType.Int32].
Namespace: Microsoft.VisualStudio.Settings
Assembly: Microsoft.VisualStudio.Settings (in Microsoft.VisualStudio.Settings.dll)
Syntax
‘선언
Public MustOverride Function GetInt32 ( _
collectionPath As String, _
propertyName As String, _
defaultValue As Integer _
) As Integer
‘사용 방법
Dim instance As SettingsStore
Dim collectionPath As String
Dim propertyName As String
Dim defaultValue As Integer
Dim returnValue As Integer
returnValue = instance.GetInt32(collectionPath, _
propertyName, defaultValue)
public abstract int GetInt32(
string collectionPath,
string propertyName,
int defaultValue
)
public:
virtual int GetInt32(
String^ collectionPath,
String^ propertyName,
int defaultValue
) abstract
abstract GetInt32 :
collectionPath:string *
propertyName:string *
defaultValue:int -> int
public abstract function GetInt32(
collectionPath : String,
propertyName : String,
defaultValue : int
) : int
Parameters
- collectionPath
Type: System.String
Path of the collection of the property.
- propertyName
Type: System.String
Name of the property.
- defaultValue
Type: System.Int32
Value to be returned if the property does not exist.
Return Value
Type: System.Int32
If the property does not exist, it returns the defaultValue passed in. If the value was stored as an unsigned integer previously, then regular type conversion semantics apply.
Exceptions
Exception | Condition |
---|---|
ArgumentException | Throws this exception if the property is of different type. |
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.