Configuration.HasFile 属性

定义

获取一个值,该值指示由此 Configuration 对象表示的资源是否存在相应的文件。

public:
 property bool HasFile { bool get(); };
public bool HasFile { get; }
member this.HasFile : bool
Public ReadOnly Property HasFile As Boolean

属性值

如果该配置文件存在,则为 true;否则,为 false

示例

下面的代码示例演示如何使用 HasFile 属性。

bool hasFile = config.HasFile;
Console.WriteLine("Has file: {0}", hasFile.ToString());
Dim hasFile As Boolean = config.HasFile
Console.WriteLine("Has file: {0}", hasFile.ToString())

注解

HasFile当此Configuration对象表示的资源从 Web.config 文件中继承设置时,属性也会返回 true

HasFileConfiguration对象表示特定于位置的配置时,属性将返回 false

适用于