C# 클래스 Orchestra.Services.RecentlyUsedItemsService

상속: IRecentlyUsedItemsService
파일 보기 프로젝트 열기: WildGums/Orchestra

공개 메소드들

메소드 설명
AddItem ( RecentlyUsedItem item ) : void

Adds the item to the list of recently used items.

PinItem ( string name ) : void

Pins the item with the specified name.

RecentlyUsedItemsService ( IXmlSerializer xmlSerializer, IFileService fileService ) : System
RemoveItem ( RecentlyUsedItem item ) : void

Removes the item from the list of recently used items.

UnpinItem ( string name ) : void

Unpins the item with the specified name.

비공개 메소드들

메소드 설명
AddSorted ( List collection, RecentlyUsedItem item ) : void
IsAvailableInCollection ( List collection, string name ) : bool
Load ( ) : void
RemoveItemFromCollection ( List collection, string name ) : void
Save ( ) : void

메소드 상세

AddItem() 공개 메소드

Adds the item to the list of recently used items.
The is null.
public AddItem ( RecentlyUsedItem item ) : void
item Orchestra.Models.RecentlyUsedItem The item.
리턴 void

PinItem() 공개 메소드

Pins the item with the specified name.
The is null or whitespace.
public PinItem ( string name ) : void
name string The name.
리턴 void

RecentlyUsedItemsService() 공개 메소드

public RecentlyUsedItemsService ( IXmlSerializer xmlSerializer, IFileService fileService ) : System
xmlSerializer IXmlSerializer
fileService IFileService
리턴 System

RemoveItem() 공개 메소드

Removes the item from the list of recently used items.
The is null.
public RemoveItem ( RecentlyUsedItem item ) : void
item Orchestra.Models.RecentlyUsedItem The item.
리턴 void

UnpinItem() 공개 메소드

Unpins the item with the specified name.
The is null or whitespace.
public UnpinItem ( string name ) : void
name string The name.
리턴 void