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

◆ Headers

NameValueCollection System.Net.Mime.MimeBasePart.Headers
getpackageinherited

Definition at line 67 of file MimeBasePart.cs.

68 {
69 get
70 {
71 if (_headers == null)
72 {
73 _headers = new HeaderCollection();
74 }
75 if (_contentType == null)
76 {
78 }
79 _contentType.PersistIfNeeded(_headers, forcePersist: false);
80 if (_contentDisposition != null)
81 {
82 _contentDisposition.PersistIfNeeded(_headers, forcePersist: false);
83 }
84 return _headers;
85 }
86 }
void PersistIfNeeded(HeaderCollection headers, bool forcePersist)
void PersistIfNeeded(HeaderCollection headers, bool forcePersist)
ContentDisposition _contentDisposition

Referenced by System.Net.Mime.MimeBasePart.PrepareHeaders().