<WebSecurity วัตถุ
คำนิยาม
สถานที่ให้บริการ CurrentUserId คือ ID (primary key) สำหรับผู้ใช้ปัจจุบันในฐานข้อมูล WebSecurity
C # และ VB ไวยากรณ์
WebSecurity.CurrentUserId
ตัวอย่าง
ตัวอย่างเช่น C #
@{
int value;
value=WebSecurity.CurrentUserId;
}
<p>Current User ID is:
@value</p>
ตัวอย่างเช่น VB
@Code
Dim value as Integer
value=WebSecurity.CurrentUserId
End Code
<p>Current User ID is:
@value</p>
หมายเหตุ
สถานที่ให้บริการ CurrentUserId จะอ่านเท่านั้น มันไม่สามารถเปลี่ยนแปลงได้ตามรหัส
ทรัพย์สินที่ใช้ในการระบุผู้ใช้ในฐานข้อมูล WebSecurity ทั้งในตารางรายละเอียดของผู้ใช้และในตารางสมาชิก
ข้อผิดพลาดและข้อยกเว้น
ผลตอบแทนที่ได้คุณสมบัติ CurrentUserId -1 ถ้าไม่มีผู้ใช้ปัจจุบันเข้าสู่ระบบ
การเข้าถึงใด ๆ ไปยังวัตถุ WebSecurity พ่น InvalidOperationException หาก:
- InitializeDatabaseConnection() วิธีการยังไม่ได้รับการเรียกว่า
- SimpleMembership ไม่ได้เริ่มต้น (or disabled in the website configuration)
ข้อมูลทางเทคนิค
ชื่อ | ความคุ้มค่า |
---|---|
namespace | WebMatrix.WebData |
การชุมนุม | WebMatrix.WebData.dll |
<WebSecurity วัตถุ