Cache.Get(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从 Cache 对象检索指定项。
public:
System::Object ^ Get(System::String ^ key);
public object Get (string key);
member this.Get : string -> obj
Public Function Get (key As String) As Object
参数
- key
- String
要检索的缓存项的标识符。
返回
检索到的缓存项,未找到该键时为 null
。
示例
以下示例演示如何检索为 ASP.NET 文本框服务器控件缓存的值。
Cache.Get("MyTextBox.Value");
Cache.Get("MyTextBox.Value")