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

private static checkName ( string name ) : string
name string
리턴 string
예제 #1
0
 public override void Set(string name, string value)
 {
     this.doWithCheckingState(new Action <string, string>(this.setWithoutCheckingName), WebHeaderCollection.checkName(name), value, true);
 }
예제 #2
0
 public static bool IsRestricted(string headerName, bool response)
 {
     return(WebHeaderCollection.isRestricted(WebHeaderCollection.checkName(headerName), response));
 }
예제 #3
0
 public override void Remove(string name)
 {
     this.doWithCheckingState(new Action <string, string>(this.removeWithoutCheckingName), WebHeaderCollection.checkName(name), null, false);
 }
예제 #4
0
 private void @add(string name, string value, bool ignoreRestricted)
 {
     this.doWithCheckingState((ignoreRestricted ? new Action <string, string>(this.addWithoutCheckingNameAndRestricted) : new Action <string, string>(this.addWithoutCheckingName)), WebHeaderCollection.checkName(name), value, true);
 }