SPHttpUtility.UrlKeyValueEncode method (String, String, TextWriter)
將編碼的字串索引鍵和在 URL 查詢字串中使用的值,然後將它附加至指定的輸出資料流。
Namespace: Microsoft.SharePoint.Utilities
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'宣告
Public Shared Sub UrlKeyValueEncode ( _
keyToEncode As String, _
valueToEncode As String, _
output As TextWriter _
)
'用途
Dim keyToEncode As String
Dim valueToEncode As String
Dim output As TextWriterSPHttpUtility.UrlKeyValueEncode(keyToEncode, _
valueToEncode, output)
public static void UrlKeyValueEncode(
string keyToEncode,
string valueToEncode,
TextWriter output
)
參數
keyToEncode
Type: System.String要編碼索引鍵的字串。
valueToEncode
Type: System.String要編碼的值字串。
output
Type: System.IO.TextWriterT:System.IO.TextWriter物件,表示要新增已編碼的機碼或值的輸出資料流。
備註
這個方法會呈現 '=' 字元編碼的索引鍵和值寫入輸出資料流的文字。這個方法不會呈現 '?' 和 '&' 字元。