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

private static isRestricted ( string name, bool response ) : bool
name string
response bool
리턴 bool
예제 #1
0
 private void checkRestricted(string name)
 {
     if ((this._internallyUsed ? false : WebHeaderCollection.isRestricted(name, true)))
     {
         throw new ArgumentException("This header must be modified with the appropiate property.");
     }
 }
예제 #2
0
 public static bool IsRestricted(string headerName, bool response)
 {
     return(WebHeaderCollection.isRestricted(WebHeaderCollection.checkName(headerName), response));
 }