Share via


ISerializationWriter.WriteProperty メソッド

定義

オーバーロード

WriteProperty(ISerializableWithWriter)

値 ISerializableWithWriter フィールドを書き込みます。

WriteProperty(String, ISerializableWithWriter)

ISerializableWithWriter フィールドの名前と値を書き込みます。

WriteProperty(String, IDictionary<String,Double>)

文字列、文字列をキー、値として使用して、IDictionary フィールドの名前と値を書き込みます。

WriteProperty(String, IDictionary<String,String>)

文字列、文字列をキー、値として使用して、IDictionary フィールドの名前と値を書き込みます。

WriteProperty(String, IList<ISerializableWithWriter>)

ISerializableWithWriter を実装するオブジェクトの IList フィールドの名前と値を書き込みます。

WriteProperty(String, IList<String>)

文字列の IList フィールドの名前と値を書き込みます。

WriteProperty(String, Nullable<Boolean>)

ブール型フィールドの名前と値を書き込みます。

WriteProperty(String, Nullable<DateTimeOffset>)

DateTimeOffset フィールドの名前と値を書き込みます。

WriteProperty(String, Nullable<Double>)

double フィールドの名前と値を書き込みます。

WriteProperty(String, Nullable<Int32>)

int フィールドの名前と値を書き込みます。

WriteProperty(String, Nullable<TimeSpan>)

TimeSpan フィールドの名前と値を書き込みます。

WriteProperty(String, String)

文字列フィールドの名前と値を書き込みます。

WriteProperty(ISerializableWithWriter)

値 ISerializableWithWriter フィールドを書き込みます。

public void WriteProperty (Microsoft.ApplicationInsights.Extensibility.ISerializableWithWriter value);
abstract member WriteProperty : Microsoft.ApplicationInsights.Extensibility.ISerializableWithWriter -> unit
Public Sub WriteProperty (value As ISerializableWithWriter)

パラメーター

適用対象

WriteProperty(String, ISerializableWithWriter)

ISerializableWithWriter フィールドの名前と値を書き込みます。

public void WriteProperty (string name, Microsoft.ApplicationInsights.Extensibility.ISerializableWithWriter value);
abstract member WriteProperty : string * Microsoft.ApplicationInsights.Extensibility.ISerializableWithWriter -> unit
Public Sub WriteProperty (name As String, value As ISerializableWithWriter)

パラメーター

name
String

適用対象

WriteProperty(String, IDictionary<String,Double>)

文字列、文字列をキー、値として使用して、IDictionary フィールドの名前と値を書き込みます。

public void WriteProperty (string name, System.Collections.Generic.IDictionary<string,double> items);
abstract member WriteProperty : string * System.Collections.Generic.IDictionary<string, double> -> unit
Public Sub WriteProperty (name As String, items As IDictionary(Of String, Double))

パラメーター

name
String

適用対象

WriteProperty(String, IDictionary<String,String>)

文字列、文字列をキー、値として使用して、IDictionary フィールドの名前と値を書き込みます。

public void WriteProperty (string name, System.Collections.Generic.IDictionary<string,string> items);
abstract member WriteProperty : string * System.Collections.Generic.IDictionary<string, string> -> unit
Public Sub WriteProperty (name As String, items As IDictionary(Of String, String))

パラメーター

name
String

適用対象

WriteProperty(String, IList<ISerializableWithWriter>)

ISerializableWithWriter を実装するオブジェクトの IList フィールドの名前と値を書き込みます。

public void WriteProperty (string name, System.Collections.Generic.IList<Microsoft.ApplicationInsights.Extensibility.ISerializableWithWriter> items);
abstract member WriteProperty : string * System.Collections.Generic.IList<Microsoft.ApplicationInsights.Extensibility.ISerializableWithWriter> -> unit
Public Sub WriteProperty (name As String, items As IList(Of ISerializableWithWriter))

パラメーター

name
String

適用対象

WriteProperty(String, IList<String>)

文字列の IList フィールドの名前と値を書き込みます。

public void WriteProperty (string name, System.Collections.Generic.IList<string> items);
abstract member WriteProperty : string * System.Collections.Generic.IList<string> -> unit
Public Sub WriteProperty (name As String, items As IList(Of String))

パラメーター

name
String
items
IList<String>

適用対象

WriteProperty(String, Nullable<Boolean>)

ブール型フィールドの名前と値を書き込みます。

public void WriteProperty (string name, bool? value);
abstract member WriteProperty : string * Nullable<bool> -> unit
Public Sub WriteProperty (name As String, value As Nullable(Of Boolean))

パラメーター

name
String
value
Nullable<Boolean>

適用対象

WriteProperty(String, Nullable<DateTimeOffset>)

DateTimeOffset フィールドの名前と値を書き込みます。

public void WriteProperty (string name, DateTimeOffset? value);
abstract member WriteProperty : string * Nullable<DateTimeOffset> -> unit
Public Sub WriteProperty (name As String, value As Nullable(Of DateTimeOffset))

パラメーター

name
String

適用対象

WriteProperty(String, Nullable<Double>)

double フィールドの名前と値を書き込みます。

public void WriteProperty (string name, double? value);
abstract member WriteProperty : string * Nullable<double> -> unit
Public Sub WriteProperty (name As String, value As Nullable(Of Double))

パラメーター

name
String
value
Nullable<Double>

適用対象

WriteProperty(String, Nullable<Int32>)

int フィールドの名前と値を書き込みます。

public void WriteProperty (string name, int? value);
abstract member WriteProperty : string * Nullable<int> -> unit
Public Sub WriteProperty (name As String, value As Nullable(Of Integer))

パラメーター

name
String
value
Nullable<Int32>

適用対象

WriteProperty(String, Nullable<TimeSpan>)

TimeSpan フィールドの名前と値を書き込みます。

public void WriteProperty (string name, TimeSpan? value);
abstract member WriteProperty : string * Nullable<TimeSpan> -> unit
Public Sub WriteProperty (name As String, value As Nullable(Of TimeSpan))

パラメーター

name
String

適用対象

WriteProperty(String, String)

文字列フィールドの名前と値を書き込みます。

public void WriteProperty (string name, string value);
abstract member WriteProperty : string * string -> unit
Public Sub WriteProperty (name As String, value As String)

パラメーター

name
String
value
String

適用対象