C# Class Swagger.Net.WebApi.Controllers.TagsController

Inheritance: ApiController
Afficher le fichier Open project: giacomelli/DG-Swagger.Net

Méthodes publiques

Méthode Description
Delete ( int id ) : void

Remove a Tag by it's id

Get ( ) : IEnumerable

Get all of the Tags

Get ( int id ) : string

Get a single Tag by it's id

Post ( [ value ) : void

Create a new Tag.

Put ( int id, [ value ) : void

Update a Tag by it's id

Method Details

Delete() public méthode

Remove a Tag by it's id
public Delete ( int id ) : void
id int
Résultat void

Get() public méthode

Get all of the Tags
public Get ( ) : IEnumerable
Résultat IEnumerable

Get() public méthode

Get a single Tag by it's id
public Get ( int id ) : string
id int
Résultat string

Post() public méthode

Create a new Tag.
public Post ( [ value ) : void
value [ The value.
Résultat void

Put() public méthode

Update a Tag by it's id
public Put ( int id, [ value ) : void
id int
value [
Résultat void