checkValue() 개인적인 정적인 메소드

private static checkValue ( string value ) : string
value string
리턴 string
예제 #1
0
 internal void InternalSet(string name, string value, bool response)
 {
     value = WebHeaderCollection.checkValue(value);
     if (!WebHeaderCollection.IsMultiValue(name, response))
     {
         base.Set(name, value);
     }
     else
     {
         base.Add(name, value);
     }
 }
예제 #2
0
 private void doWithoutCheckingName(Action <string, string> action, string name, string value)
 {
     this.checkRestricted(name);
     action(name, WebHeaderCollection.checkValue(value));
 }
예제 #3
0
 private void addWithoutCheckingNameAndRestricted(string name, string value)
 {
     base.Add(name, WebHeaderCollection.checkValue(value));
 }