C# Class BlogEngine.Core.Notes.QuickNotes

Quick notes
Show file Open project: rasmuskl/ReSharperCourse Class Usage Examples

Public Methods

Method 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 method

Mark note as deleted
public Delete ( string id ) : bool
id string ID
return bool

Note() public method

The note
public Note ( System.Guid id ) : QuickNote
id System.Guid Note ID
return QuickNote

QuickNotes() public method

public QuickNotes ( string user ) : System
user string
return System

SaveNote() public method

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

SaveSettings() public method

Save settings
public SaveSettings ( string category, string tags ) : void
category string Default post category id
tags string Default tags
return void