SPContext.GetCachedField delegate
實作回呼,以檢查有快取的欄位值。
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'宣告
Public Delegate Function GetCachedField ( _
fieldName As String, _
<OutAttribute> ByRef cachedFieldValue As String _
) As Boolean
'用途
Dim instance As New GetCachedField(AddressOf HandlerMethod)
public delegate bool GetCachedField(
string fieldName,
out string cachedFieldValue
)
參數
fieldName
Type: System.String字串,指定要確認它會快取的欄位名稱。
cachedFieldValue
Type: System.String字串,包含快取的欄位輸出。這個參數可以包含空字串,如果沒有顯示任何東西。
傳回值
Type: System.Boolean
true如果快取會包含一個項目,即使項目是空的字串 ;否則, false。
備註
若要加速非顯示表單頁面上的欄位控制項的呈現,您可以實作快取的值的回呼。基於安全性理由,這個回呼可以用於顯示模式,並無法呼叫的特定欄位的控制項 (例如,安全性修剪清單的 [查詢] 欄位中)。它是最佳的作法,以避免設定回呼已簽出的頁面或草稿版本。