C# Class BlogEngine.Core.Notes.QuickNotes

Quick notes
Afficher le fichier Open project: rasmuskl/ReSharperCourse Class Usage Examples

Méthodes publiques

Méthode Description
Delete ( string id ) : bool

Mark note as deleted

Note ( System.Guid id ) : QuickNote

The note

QuickNotes ( string user ) : System
SaveNote ( string id, string note ) : QuickNote

Save note to collection and data storage

SaveSettings ( string category, string tags ) : void

Save settings

Method Details

Delete() public méthode

Mark note as deleted
public Delete ( string id ) : bool
id string ID
Résultat bool

Note() public méthode

The note
public Note ( System.Guid id ) : QuickNote
id System.Guid Note ID
Résultat QuickNote

QuickNotes() public méthode

public QuickNotes ( string user ) : System
user string
Résultat System

SaveNote() public méthode

Save note to collection and data storage
public SaveNote ( string id, string note ) : QuickNote
id string Id
note string Note
Résultat QuickNote

SaveSettings() public méthode

Save settings
public SaveSettings ( string category, string tags ) : void
category string Default post category id
tags string Default tags
Résultat void