5 instantiations of ContentDispositionHeaderValue
Microsoft.NET.Sdk.Publish.Tasks (1)
Tasks\Http\HttpClientExtensions.cs (1)
121
ContentDisposition = new
ContentDispositionHeaderValue
("attachment")
System.Net.Http (4)
System\Net\Http\Headers\ContentDispositionHeaderValue.cs (2)
181
return new
ContentDispositionHeaderValue
(this);
229
ContentDispositionHeaderValue contentDispositionHeader = new
ContentDispositionHeaderValue
();
System\Net\Http\MultipartFormDataContent.cs (2)
30
content.Headers.ContentDisposition ??= new
ContentDispositionHeaderValue
(formData);
56
ContentDispositionHeaderValue header = new
ContentDispositionHeaderValue
(formData);
13 references to ContentDispositionHeaderValue
netstandard (1)
netstandard.cs (1)
1100
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.Http.Headers.
ContentDispositionHeaderValue
))]
System.Net.Http (12)
System\Net\Http\Headers\ContentDispositionHeaderValue.cs (8)
132
protected ContentDispositionHeaderValue(
ContentDispositionHeaderValue
source)
161
ContentDispositionHeaderValue
? other = obj as
ContentDispositionHeaderValue
;
188
public static
ContentDispositionHeaderValue
Parse(string input)
191
return (
ContentDispositionHeaderValue
)GenericHeaderParser.ContentDispositionParser.ParseValue(input, null, ref index);
194
public static bool TryParse([NotNullWhen(true)] string? input, [NotNullWhen(true)] out
ContentDispositionHeaderValue
? parsedValue)
201
parsedValue = (
ContentDispositionHeaderValue
)output!;
229
ContentDispositionHeaderValue
contentDispositionHeader = new ContentDispositionHeaderValue();
System\Net\Http\Headers\GenericHeaderParser.cs (1)
30
internal static readonly GenericHeaderParser ContentDispositionParser = new GenericHeaderParser(false,
ContentDispositionHeaderValue
.GetDispositionTypeLength);
System\Net\Http\Headers\HttpContentHeaders.cs (2)
20
public
ContentDispositionHeaderValue
? ContentDisposition
22
get { return (
ContentDispositionHeaderValue
?)GetSingleParsedValue(KnownHeaders.ContentDisposition.Descriptor); }
System\Net\Http\MultipartFormDataContent.cs (1)
56
ContentDispositionHeaderValue
header = new ContentDispositionHeaderValue(formData);