ProtectedConfiguration.ProtectedDataSectionName 字段

定义

受保护的数据节的名称。

public: System::String ^ ProtectedDataSectionName;
public const string ProtectedDataSectionName;
val mutable ProtectedDataSectionName : string
Public Const ProtectedDataSectionName As String 

字段值

示例

以下示例演示如何使用 ProtectedDataSectionName 属性检索受保护数据节的名称。

// Get the protected section name.
string protectedSectionName =
    ProtectedConfiguration.ProtectedDataSectionName;
Console.WriteLine(
    "Protected section name: {0}",
     protectedSectionName);
' Get the Rsa provider name.
Dim protectedSectionName As String = _
ProtectedConfiguration.ProtectedDataSectionName
Console.WriteLine( _
"Protected section name: {0}", protectedSectionName)

注解

这是一个包含受保护数据节的名称的常量字符串变量。

适用于

另请参阅