WebContext.ApplicationLevel Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
WebApplicationLevel Mendapatkan objek yang mewakili tingkat jalur aplikasi Web saat ini.
public:
property System::Web::Configuration::WebApplicationLevel ApplicationLevel { System::Web::Configuration::WebApplicationLevel get(); };
public System.Web.Configuration.WebApplicationLevel ApplicationLevel { get; }
member this.ApplicationLevel : System.Web.Configuration.WebApplicationLevel
Public ReadOnly Property ApplicationLevel As WebApplicationLevel
Nilai Properti
Objek WebApplicationLevel.
Contoh
Contoh berikut menunjukkan cara menggunakan ApplicationLevel properti . Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk WebContext kelas .
// WebContext - Application Level.
Console.WriteLine("ApplicationLevel: {0}",
webContext.ApplicationLevel.ToString());
' WebContext - Application Level.
Console.WriteLine("ApplicationLevel: {0}", _
webContext.ApplicationLevel.ToString())