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

◆ WriteDecimalInt32Async()

Task System.Net.Http.HttpConnection.WriteDecimalInt32Async ( int value,
bool async )
inlineprivate

Definition at line 1339 of file HttpConnection.cs.

1340 {
1342 {
1344 return Task.CompletedTask;
1345 }
1346 return WriteAsciiStringAsync(value.ToString(), async);
1347 }
static bool TryFormat(bool value, Span< byte > destination, out int bytesWritten, StandardFormat format=default(StandardFormat))
Task WriteAsciiStringAsync(string s, bool async)
static Task CompletedTask
Definition Task.cs:1120

References System.Net.Http.HttpConnection._writeBuffer, System.Net.Http.HttpConnection._writeOffset, System.Threading.Tasks.Task< TResult >.CompletedTask, System.Buffers.Text.Utf8Formatter.TryFormat(), System.value, and System.Net.Http.HttpConnection.WriteAsciiStringAsync().

Referenced by System.Net.Http.HttpConnection.SendAsyncCore(), and System.Net.Http.HttpConnection.WriteHostHeaderAsync().