HttpUtility.JavaScriptStringEncode メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
文字列をエンコードします。
オーバーロード
JavaScriptStringEncode(String) |
文字列をエンコードします。 |
JavaScriptStringEncode(String, Boolean) |
文字列をエンコードします。 |
注釈
このメソッドは文字列をエンコードします。 たとえば、単一引用符と二重引用符は、エンコードされた文字列に と として\'
\"
含まれます。
JavaScriptStringEncode(String)
- ソース:
- HttpUtility.cs
- ソース:
- HttpUtility.cs
- ソース:
- HttpUtility.cs
文字列をエンコードします。
public:
static System::String ^ JavaScriptStringEncode(System::String ^ value);
public static string JavaScriptStringEncode (string? value);
public static string JavaScriptStringEncode (string value);
static member JavaScriptStringEncode : string -> string
Public Shared Function JavaScriptStringEncode (value As String) As String
パラメーター
- value
- String
エンコードする文字列。
戻り値
エンコードされた文字列。
適用対象
JavaScriptStringEncode(String, Boolean)
- ソース:
- HttpUtility.cs
- ソース:
- HttpUtility.cs
- ソース:
- HttpUtility.cs
文字列をエンコードします。
public:
static System::String ^ JavaScriptStringEncode(System::String ^ value, bool addDoubleQuotes);
public static string JavaScriptStringEncode (string? value, bool addDoubleQuotes);
public static string JavaScriptStringEncode (string value, bool addDoubleQuotes);
static member JavaScriptStringEncode : string * bool -> string
Public Shared Function JavaScriptStringEncode (value As String, addDoubleQuotes As Boolean) As String
パラメーター
- value
- String
エンコードする文字列。
- addDoubleQuotes
- Boolean
エンコードされた文字列を囲む二重引用符が含まれるかどうかを示す値。
戻り値
エンコードされた文字列。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET