ITempDataDictionary 介面

定義

表示只會從某個要求保存到下一個要求的一組資料。

public interface class ITempDataDictionary : System::Collections::Generic::ICollection<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>>, System::Collections::Generic::IDictionary<System::String ^, System::Object ^>, System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>>
public interface ITempDataDictionary : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string,object>>, System.Collections.Generic.IDictionary<string,object>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object>>
type ITempDataDictionary = interface
    interface IDictionary<string, obj>
    interface ICollection<KeyValuePair<string, obj>>
    interface seq<KeyValuePair<string, obj>>
    interface IEnumerable
type ITempDataDictionary = interface
    interface ICollection<KeyValuePair<string, obj>>
    interface seq<KeyValuePair<string, obj>>
    interface IEnumerable
    interface IDictionary<string, obj>
Public Interface ITempDataDictionary
Implements ICollection(Of KeyValuePair(Of String, Object)), IDictionary(Of String, Object), IEnumerable(Of KeyValuePair(Of String, Object))
衍生
實作

方法

Keep()

將字典中的所有索引鍵都標記為保留。

Keep(String)

將字典中指定的索引鍵標記為保留。

Load()

使用已註冊 ITempDataProvider 的 載入字典。

Peek(String)

傳回包含與指定之索引鍵相關聯的項目的物件,而不會將索引鍵標記為待刪除。

Save()

使用已註冊 ITempDataProvider 的 來儲存字典。

適用於