C# 클래스 BlogEngine.Core.Notes.QuickNotes

Quick notes
파일 보기 프로젝트 열기: rasmuskl/ReSharperCourse 1 사용 예제들

공개 메소드들

메소드 설명
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

메소드 상세

Delete() 공개 메소드

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

Note() 공개 메소드

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

QuickNotes() 공개 메소드

public QuickNotes ( string user ) : System
user string
리턴 System

SaveNote() 공개 메소드

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

SaveSettings() 공개 메소드

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