Esempio n. 1
0
 public ArgumentDescription(string argumentName, Type type, Func <Type, string> schemaGenerator)
 {
     Name            = argumentName;
     TypeDescription = new TypeDescription(type, schemaGenerator);
 }
Esempio n. 2
0
 public EndpointDescription(string name, Type type, Func <Type, string> schemaGenerator)
 {
     Name            = name;
     TypeDescription = new TypeDescription(type, schemaGenerator);
 }