IHttpSessionState.CodePage プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在のセッションのコード ページ識別子を取得または設定します。
public:
property int CodePage { int get(); void set(int value); };
public int CodePage { get; set; }
member this.CodePage : int with get, set
Public Property CodePage As Integer
プロパティ値
現在のセッションのコード ページ識別子。
例
次のコード例では、 インターフェイスの プロパティを CodePage 実装して、 IHttpSessionState 現在の応答のエンコーディングを取得および設定します。
//
// Session.CodePage exists only to support legacy ASP compatibility. ASP.NET developers should use
// Response.ContentEncoding instead.
//
public int CodePage
{
get
{
if (HttpContext.Current != null)
return HttpContext.Current.Response.ContentEncoding.CodePage;
else
return Encoding.Default.CodePage;
}
set
{
if (HttpContext.Current != null)
HttpContext.Current.Response.ContentEncoding = Encoding.GetEncoding(value);
}
}
'
' Session.CodePage exists only to support legacy ASP compatibility. ASP.NET developers should use
' Response.ContentEncoding instead.
'
Public Property CodePage As Integer Implements IHttpSessionState.CodePage
Get
If Not HttpContext.Current Is Nothing Then
Return HttpContext.Current.Response.ContentEncoding.CodePage
Else
Return Encoding.Default.CodePage
End If
End Get
Set
If Not HttpContext.Current Is Nothing Then _
HttpContext.Current.Response.ContentEncoding = Encoding.GetEncoding(value)
End Set
End Property
注釈
文字セット (コード ページ) は、マルチバイト文字データの解釈、文字値の決定、並べ替え順序の解釈に使用されます。 コード ページの設定は、Unicode 文字データではなく、マルチバイト文字データにのみ適用されます。
この CodePage プロパティは、以前のバージョンの ASP との互換性のためにのみ提供されます。 ASP ページとの下位互換性を維持する必要がない場合は、代わりに プロパティの プロパティをContentEncoding使用CodePageします。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET