ActivitySpanId.CreateFromString(ReadOnlySpan<Char>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new ActivitySpanId value from a read-only span of 16 hexadecimal characters.
public:
static System::Diagnostics::ActivitySpanId CreateFromString(ReadOnlySpan<char> idData);
public static System.Diagnostics.ActivitySpanId CreateFromString (ReadOnlySpan<char> idData);
static member CreateFromString : ReadOnlySpan<char> -> System.Diagnostics.ActivitySpanId
Public Shared Function CreateFromString (idData As ReadOnlySpan(Of Char)) As ActivitySpanId
Parameters
- idData
- ReadOnlySpan<Char>
A span that contains 16 hexadecimal characters.
Returns
The new span ID.
Exceptions
idData
does not contain 16 hexadecimal characters.
-or-
The characters in idData
are not all lower-case hexadecimal characters or all zeros.
Remarks
idData
can consist either of numbers and lower-case hexadecimal characters or of all zeros.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET