Preferences.Set メソッド

定義

オーバーロード

Set(String, Int32, String)

指定のキーに対して値を設定します。

Set(String, Double, String)

指定のキーに対して値を設定します。

Set(String, Int64, String)

指定のキーに対して値を設定します。

Set(String, DateTimeOffset, String)

指定のキーに対して値を設定します。

Set(String, DateTime, String)

指定のキーに対して値を設定します。

Set(String, Boolean, String)

指定のキーに対して値を設定します。

Set(String, String)

指定のキーに対して値を設定します。

Set(String, DateTimeOffset)

指定のキーに対して値を設定します。

Set(String, Int64)

指定のキーに対して値を設定します。

Set(String, Int32)

指定のキーに対して値を設定します。

Set(String, Double)

指定のキーに対して値を設定します。

Set(String, DateTime)

指定のキーに対して値を設定します。

Set(String, Boolean)

指定のキーに対して値を設定します。

Set(String, Single, String)

指定のキーに対して値を設定します。

Set(String, Single)

指定のキーに対して値を設定します。

Set(String, String, String)

指定のキーに対して値を設定します。

Set(String, Int32, String)

ソース:
Preferences.shared.cs
ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, int value, System::String ^ sharedName);
public static void Set (string key, int value, string? sharedName);
static member Set : string * int * string -> unit
Public Shared Sub Set (key As String, value As Integer, sharedName As String)

パラメーター

key
String

基本設定キー。

value
Int32

基本設定の値。

sharedName
String

共有コンテナー名。

適用対象

Set(String, Double, String)

ソース:
Preferences.shared.cs
ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, double value, System::String ^ sharedName);
public static void Set (string key, double value, string? sharedName);
static member Set : string * double * string -> unit
Public Shared Sub Set (key As String, value As Double, sharedName As String)

パラメーター

key
String

基本設定キー。

value
Double

基本設定の値。

sharedName
String

共有コンテナー名。

適用対象

Set(String, Int64, String)

ソース:
Preferences.shared.cs
ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, long value, System::String ^ sharedName);
public static void Set (string key, long value, string? sharedName);
static member Set : string * int64 * string -> unit
Public Shared Sub Set (key As String, value As Long, sharedName As String)

パラメーター

key
String

基本設定キー。

value
Int64

基本設定の値。

sharedName
String

共有コンテナー名。

適用対象

Set(String, DateTimeOffset, String)

ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, DateTimeOffset value, System::String ^ sharedName);
public static void Set (string key, DateTimeOffset value, string? sharedName);
static member Set : string * DateTimeOffset * string -> unit
Public Shared Sub Set (key As String, value As DateTimeOffset, sharedName As String)

パラメーター

key
String

値を設定するキー。

value
DateTimeOffset

設定する値。

sharedName
String

共有コンテナー名。

適用対象

Set(String, DateTime, String)

ソース:
Preferences.shared.cs
ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, DateTime value, System::String ^ sharedName);
public static void Set (string key, DateTime value, string? sharedName);
static member Set : string * DateTime * string -> unit
Public Shared Sub Set (key As String, value As DateTime, sharedName As String)

パラメーター

key
String

基本設定キー。

value
DateTime

基本設定の値。

sharedName
String

共有コンテナー名。

適用対象

Set(String, Boolean, String)

ソース:
Preferences.shared.cs
ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, bool value, System::String ^ sharedName);
public static void Set (string key, bool value, string? sharedName);
static member Set : string * bool * string -> unit
Public Shared Sub Set (key As String, value As Boolean, sharedName As String)

パラメーター

key
String

基本設定キー。

value
Boolean

基本設定の値。

sharedName
String

共有コンテナー名。

適用対象

Set(String, String)

ソース:
Preferences.shared.cs
ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, System::String ^ value);
public static void Set (string key, string? value);
static member Set : string * string -> unit
Public Shared Sub Set (key As String, value As String)

パラメーター

key
String

値を設定するキー。

value
String

設定する値。

適用対象

Set(String, DateTimeOffset)

ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, DateTimeOffset value);
public static void Set (string key, DateTimeOffset value);
static member Set : string * DateTimeOffset -> unit
Public Shared Sub Set (key As String, value As DateTimeOffset)

パラメーター

key
String

値を設定するキー。

value
DateTimeOffset

設定する値。

適用対象

Set(String, Int64)

ソース:
Preferences.shared.cs
ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, long value);
public static void Set (string key, long value);
static member Set : string * int64 -> unit
Public Shared Sub Set (key As String, value As Long)

パラメーター

key
String

基本設定キー。

value
Int64

基本設定の値。

適用対象

Set(String, Int32)

ソース:
Preferences.shared.cs
ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, int value);
public static void Set (string key, int value);
static member Set : string * int -> unit
Public Shared Sub Set (key As String, value As Integer)

パラメーター

key
String

基本設定キー。

value
Int32

基本設定の値。

適用対象

Set(String, Double)

ソース:
Preferences.shared.cs
ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, double value);
public static void Set (string key, double value);
static member Set : string * double -> unit
Public Shared Sub Set (key As String, value As Double)

パラメーター

key
String

基本設定キー。

value
Double

基本設定の値。

適用対象

Set(String, DateTime)

ソース:
Preferences.shared.cs
ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, DateTime value);
public static void Set (string key, DateTime value);
static member Set : string * DateTime -> unit
Public Shared Sub Set (key As String, value As DateTime)

パラメーター

key
String

基本設定キー。

value
DateTime

基本設定の値。

適用対象

Set(String, Boolean)

ソース:
Preferences.shared.cs
ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, bool value);
public static void Set (string key, bool value);
static member Set : string * bool -> unit
Public Shared Sub Set (key As String, value As Boolean)

パラメーター

key
String

基本設定キー。

value
Boolean

基本設定の値。

適用対象

Set(String, Single, String)

ソース:
Preferences.shared.cs
ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, float value, System::String ^ sharedName);
public static void Set (string key, float value, string? sharedName);
static member Set : string * single * string -> unit
Public Shared Sub Set (key As String, value As Single, sharedName As String)

パラメーター

key
String

基本設定キー。

value
Single

基本設定の値。

sharedName
String

共有コンテナー名。

適用対象

Set(String, Single)

ソース:
Preferences.shared.cs
ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, float value);
public static void Set (string key, float value);
static member Set : string * single -> unit
Public Shared Sub Set (key As String, value As Single)

パラメーター

key
String

基本設定キー。

value
Single

基本設定の値。

適用対象

Set(String, String, String)

ソース:
Preferences.shared.cs
ソース:
Preferences.shared.cs

指定のキーに対して値を設定します。

public:
 static void Set(System::String ^ key, System::String ^ value, System::String ^ sharedName);
public static void Set (string key, string? value, string? sharedName);
static member Set : string * string * string -> unit
Public Shared Sub Set (key As String, value As String, sharedName As String)

パラメーター

key
String

基本設定キー。

value
String

基本設定の値。

sharedName
String

共有コンテナー名。

適用対象