HttpEncoder.Current 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定將在應用程式中使用的 HttpEncoder 型別。
public:
static property System::Web::Util::HttpEncoder ^ Current { System::Web::Util::HttpEncoder ^ get(); void set(System::Web::Util::HttpEncoder ^ value); };
public static System.Web.Util.HttpEncoder Current { get; set; }
member this.Current : System.Web.Util.HttpEncoder with get, set
Public Shared Property Current As HttpEncoder
屬性值
將使用之編碼器/解碼器型別的參考。
例外狀況
指派給這個屬性的編碼器執行個體為 null
。
備註
如果在 HttpEncoder 設定檔中指定了衍生類型,則屬性會傳回 Current 自訂類型的參考。 但是,如果未使用任何自訂編碼器,屬性會傳回預設 ASP.NET 實例的參考 HttpEncoder 。
Current屬性不是安全線程。 請只在應用程式的方法中設定此屬性 Application_Start
,因為會 Application_Start
在單一執行緒上執行。