System.Net.Mime.HeaderCollection.InternalSet C# (CSharp) Method

InternalSet() private method

private InternalSet ( string name, string value ) : void
name string
value string
return void
        internal void InternalSet(string name, string value) => base.Set(name, value);

Usage Example

示例#1
0
 internal void Set(string contentDisposition, HeaderCollection headers)
 {
     this.disposition = contentDisposition;
     this.ParseValue();
     headers.InternalSet(MailHeaderInfo.GetString(MailHeaderID.ContentDisposition), this.ToString());
     this.isPersisted = true;
 }
All Usage Examples Of System.Net.Mime.HeaderCollection::InternalSet