20 references to Decode
BinaryFormatTests (6)
FormatTests\FormattedObject\BinaryFormatWriterTests.cs (2)
103SerializationRecord rootRecord = NrbfDecoder.Decode(stream); 135SerializationRecord rootRecord = NrbfDecoder.Decode(stream);
FormatTests\FormattedObject\HashTableTests.cs (1)
147SerializationRecord rootRecord = NrbfDecoder.Decode(stream);
SerializationRecordExtensionsTests.cs (3)
29SerializationRecord rootRecord = NrbfDecoder.Decode(stream); 67SerializationRecord rootRecord = NrbfDecoder.Decode(stream); 92SerializationRecord rootRecord = NrbfDecoder.Decode(stream);
PresentationCore (1)
System\Windows\dataobject.cs (1)
3012if (NrbfDecoder.Decode(stream, leaveOpen: true).TryGetFrameworkObject(out object val))
PresentationCore.Tests (3)
BinaryFormat\BinaryFormatWriterTests.cs (1)
73SerializationRecord format = NrbfDecoder.Decode(stream);
BinaryFormat\HashTableTests.cs (1)
147SerializationRecord format = NrbfDecoder.Decode(stream);
TestUtilities\BinaryFormatTestExtensions.cs (1)
16public static SerializationRecord SerializeAndParse(this object source) => NrbfDecoder.Decode(source.Serialize());
PresentationFramework (1)
MS\Internal\DataStreams.cs (1)
255NrbfDecoder.Decode(dataStream, leaveOpen: true).TryGetFrameworkObject(out object val);
System.Formats.Nrbf (3)
System\Formats\Nrbf\NrbfDecoder.cs (3)
133/// <inheritdoc cref="Decode(Stream, PayloadOptions?, bool)"/> 160/// <inheritdoc cref="Decode(Stream, PayloadOptions?, bool)"/> 162=> (ClassRecord)Decode(payload, options, leaveOpen);
System.Private.Windows.Core.Tests (2)
System\Private\Windows\Nrbf\CoreNrbfSerializerTests.cs (2)
34SerializationRecord record = NrbfDecoder.Decode(stream); 52SerializationRecord record = NrbfDecoder.Decode(stream, leaveOpen: true);
System.Windows.Forms.Tests (4)
System\Windows\Forms\BinaryFormat\WinFormsBinaryFormattedObjectTests.cs (3)
54SerializationRecord record = NrbfDecoder.Decode(stream); 146SerializationRecord rootRecord = NrbfDecoder.Decode(stream); 209SerializationRecord rootRecord = NrbfDecoder.Decode(memoryStream);
System\Windows\Forms\ClipboardTests.cs (1)
1048SerializationRecord record = NrbfDecoder.Decode(stream);