ActivityContext.TryParse メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
TryParse(String, String, ActivityContext) |
W3C トレース コンテキスト ヘッダーを ActivityContext オブジェクトに解析することを試みます。 |
TryParse(String, String, Boolean, ActivityContext) |
W3C トレース コンテキスト ヘッダーをオブジェクトに ActivityContext 解析しようとします。 |
TryParse(String, String, ActivityContext)
W3C トレース コンテキスト ヘッダーを ActivityContext オブジェクトに解析することを試みます。
public:
static bool TryParse(System::String ^ traceParent, System::String ^ traceState, [Runtime::InteropServices::Out] System::Diagnostics::ActivityContext % context);
public static bool TryParse (string traceParent, string? traceState, out System.Diagnostics.ActivityContext context);
public static bool TryParse (string? traceParent, string? traceState, out System.Diagnostics.ActivityContext context);
static member TryParse : string * string * ActivityContext -> bool
Public Shared Function TryParse (traceParent As String, traceState As String, ByRef context As ActivityContext) As Boolean
パラメーター
- traceParent
- String
W3C トレースの親ヘッダー。
- traceState
- String
W3C トレースの状態。
- context
- ActivityContext
このメソッドから true
が返された場合に、解析操作で作成される ActivityContext オブジェクト。
戻り値
解析が成功した場合は true
。それ以外の場合は false
。
適用対象
TryParse(String, String, Boolean, ActivityContext)
W3C トレース コンテキスト ヘッダーをオブジェクトに ActivityContext 解析しようとします。
public:
static bool TryParse(System::String ^ traceParent, System::String ^ traceState, bool isRemote, [Runtime::InteropServices::Out] System::Diagnostics::ActivityContext % context);
public static bool TryParse (string? traceParent, string? traceState, bool isRemote, out System.Diagnostics.ActivityContext context);
static member TryParse : string * string * bool * ActivityContext -> bool
Public Shared Function TryParse (traceParent As String, traceState As String, isRemote As Boolean, ByRef context As ActivityContext) As Boolean
パラメーター
- traceParent
- String
W3C トレースの親ヘッダー。
- traceState
- String
W3C トレースの状態。
- isRemote
- Boolean
true
リモート親からコンテキストを伝達する場合は 。それ以外の場合は false
。
- context
- ActivityContext
このメソッドが戻るとき、 には解析操作から作成された オブジェクトが格納 ActivityContext されます。
戻り値
正常に操作できた場合は true
。それ以外の場合は false
。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET