6 references to GetTextNodeBuffer
System.Private.DataContractSerialization (6)
System\Xml\XmlBinaryWriter.cs (6)
107byte[] buffer = GetTextNodeBuffer(1 + Unsafe.SizeOf<T>(), out int offset); 736Span<byte> span = GetTextNodeBuffer(1 + sizeof(float), out int offset).AsSpan(offset, 1 + sizeof(float)); 761Span<byte> span = GetTextNodeBuffer(1 + sizeof(double), out int offset).AsSpan(offset, 1 + sizeof(double)); 781Span<byte> span = GetTextNodeBuffer(1 + sizeof(decimal), out int offset).AsSpan(offset, 1 + sizeof(decimal)); 800byte[] buffer = GetTextNodeBuffer(17, out offset); 813Span<byte> span = GetTextNodeBuffer(17, out int offset).AsSpan(offset, 17);