Inheritance: System.Configuration.ConfigurationElementCollection
Example #1
0
 public static PolicyDirective AsAliasedDirective(this PolicyDirectiveElement element, string name, string oldName)
 {
     if (element == null)
     {
         return(null);
     }
     return(element.ToAliasedDirective(name, oldName));
 }
Example #2
0
 public static PolicyDirective AsDirective(this PolicyDirectiveElement element, string name)
 {
     if (element == null)
     {
         return(null);
     }
     return(element.ToDirective(name));
 }