public string post_header_values(HeaderInput input) { if (input.Value1.IsNotEmpty()) { _writer.AppendHeader(input.Key, input.Value1); } if (input.Value2.IsNotEmpty()) { _writer.AppendHeader(input.Key, input.Value2); } return "it's all good"; }
public string post_header_values(HeaderInput input) { if (input.Value1.IsNotEmpty()) { _writer.AppendHeader(input.Key, input.Value1); } if (input.Value2.IsNotEmpty()) { _writer.AppendHeader(input.Key, input.Value2); } return("it's all good"); }