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