FileEventArgs Constructor
Applies to v2.
Initializes a new instance of the FileEventArgs class.
Namespace: Microsoft.WebMatrix.Extensibility.Editor
Assembly: Microsoft.WebMatrix.Extensibility (in Microsoft.WebMatrix.Extensibility.dll)
Syntax
'Declaration
Public Sub New ( _
path As String, _
isLocal As Boolean _
)
'Usage
Dim path As String
Dim isLocal As Boolean
Dim instance As New FileEventArgs(path, isLocal)
public FileEventArgs(
string path,
bool isLocal
)
public:
FileEventArgs(
String^ path,
bool isLocal
)
new :
path:string *
isLocal:bool -> FileEventArgs
public function FileEventArgs(
path : String,
isLocal : boolean
)
Parameters
path
Type: System.StringThe location of the file.
isLocal
Type: System.Booleantrue if the file is a local file; otherwise, false.