Public ReadOnly Property Profile As ProfileSection
Dim instance As SystemWebSectionGroup Dim value As ProfileSection value = instance.Profile
public ProfileSection Profile { get; }
public: property ProfileSection^ Profile { ProfileSection^ get (); }
/** @property */ public ProfileSection get_Profile ()
public function get Profile () : ProfileSection
ProfileSection 对象引用配置文件的 profile 节。
下面的代码示例演示如何从现有 Web 应用程序的配置文件获取 ProfileSection 对象。
' Get the profile section. Dim profile As ProfileSection = _ systemWeb.Profile ' Read section information. info = profile.SectionInformation name = info.SectionName type = info.Type declared = info.IsDeclared.ToString() msg = String.Format("Name: {0}" + _ ControlChars.Lf + "Declared: {1}" + _ ControlChars.Lf + "Type: {2}" + _ ControlChars.Lf, name, declared, type)
// Get the profile section. ProfileSection profile = systemWeb.Profile; // Read section information. info = profile.SectionInformation; name = info.SectionName; type = info.Type; declared = info.IsDeclared.ToString(); msg = String.Format( "Name: {0}\nDeclared: {1}\nType: {2}\n", name, declared, type);
Windows 98、Windows 2000 SP4、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition
.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求。