C# Класс Orchestra.Services.RecentlyUsedItemsService

Наследование: IRecentlyUsedItemsService
Показать файл Открыть проект

Открытые методы

Метод Описание
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