AsnWriter.WriteEncodedValue(ReadOnlySpan<Byte>) 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.
Write a single value which has already been encoded.
public:
void WriteEncodedValue(ReadOnlySpan<System::Byte> value);
public void WriteEncodedValue (ReadOnlySpan<byte> value);
member this.WriteEncodedValue : ReadOnlySpan<byte> -> unit
Public Sub WriteEncodedValue (value As ReadOnlySpan(Of Byte))
Parameters
- value
- ReadOnlySpan<Byte>
The value to write.
Exceptions
value
could not be read under the current encoding rules.
-or-
value
has data beyond the end of the first value.
Remarks
This method only checks that the tag and length are encoded according to the current ruleset, and that the end of the value is the end of the input. The contents are not evaluated for semantic meaning.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET