Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ TryCreateContentReadStream()

override Stream System.Net.Http.StreamContent.TryCreateContentReadStream ( )
inlinepackagevirtual

Reimplemented from System.Net.Http.HttpContent.

Definition at line 175 of file StreamContent.cs.

176 {
177 if (!(GetType() == typeof(StreamContent)))
178 {
179 return null;
180 }
181 return new ReadOnlyStream(_content);
182 }

References System.Net.Http.StreamContent._content.