C# Class Nancy.Swagger.SwaggerConfig

Datei anzeigen Open project: khellang/Nancy.Swagger Class Usage Examples

Public Methods

Method Description
DefaultModelIdConvention ( Type type ) : string

Returns a unique model id for the given type.

Returns the type's name. If this id was resolved by a different type first, prepend the last part of the type's namespace and check again. And so on.

DefaultNicknameConvention ( string path, HttpMethod method, Operation route ) : string

Returns a unique id for the given route that can be used by tools reading the output for further and easier manipulation.

Private Methods

Method Description
SwaggerConfig ( ) : System

Method Details

DefaultModelIdConvention() public static method

Returns a unique model id for the given type.
Returns the type's name. If this id was resolved by a different type first, prepend the last part of the type's namespace and check again. And so on.
public static DefaultModelIdConvention ( Type type ) : string
type System.Type
return string

DefaultNicknameConvention() public static method

Returns a unique id for the given route that can be used by tools reading the output for further and easier manipulation.
public static DefaultNicknameConvention ( string path, HttpMethod method, Operation route ) : string
path string
method HttpMethod
route Operation The route for which a nickname is returned.
return string