SectionInformation.AllowLocation 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.
Mendapatkan atau menetapkan nilai yang menunjukkan apakah bagian konfigurasi mengizinkan location
atribut.
public:
property bool AllowLocation { bool get(); void set(bool value); };
public bool AllowLocation { get; set; }
member this.AllowLocation : bool with get, set
Public Property AllowLocation As Boolean
Nilai Properti
true
location
jika atribut diizinkan; jika tidak, false
. Default adalah true
.
Pengecualian
Nilai yang dipilih berkonflik dengan nilai yang sudah ditentukan.
Contoh
Contoh di bagian ini menunjukkan cara mendapatkan AllowLocation nilai properti setelah mengakses informasi bagian terkait dalam file konfigurasi.
Contoh berikut mendapatkan SectionInformation objek .
// Get the current configuration file.
System.Configuration.Configuration config =
ConfigurationManager.OpenExeConfiguration(
ConfigurationUserLevel.None);
// Get the section.
UrlsSection section =
(UrlsSection)config.GetSection("MyUrls");
SectionInformation sInfo =
section.SectionInformation;
' Get the current configuration file.
Dim config _
As System.Configuration.Configuration = _
ConfigurationManager.OpenExeConfiguration( _
ConfigurationUserLevel.None)
' Get the section.
Dim section As UrlsSection = _
CType(config.GetSection("MyUrls"), UrlsSection)
Dim sInfo As SectionInformation = _
section.SectionInformation
Contoh berikut mendapatkan nilainya AllowLocation .
bool allowLocation =
sInfo.AllowLocation;
Console.WriteLine("Allow location: {0}",
allowLocation.ToString());
Dim allowLocation As Boolean = _
sInfo.AllowLocation
Console.WriteLine("Allow location: {0}", _
allowLocation.ToString())
Keterangan
Saat diatur ke false
, AllowLocation properti menunjukkan bahwa bagian diakses oleh pembaca kode asli. Oleh karena itu, penggunaan location
atribut tidak diperbolehkan, karena pembaca kode asli tidak mendukung konsep location
.