|
ExportDestination(String, Boolean, String, String, String) Constructor
|
Namespace: GSF.IOAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
Syntax Public Sub New (
destinationFile As String,
connectToShare As Boolean,
Optional domain As String = "",
Optional userName As String = "",
Optional password As String = ""
)
public:
ExportDestination(
String^ destinationFile,
bool connectToShare,
String^ domain = L"",
String^ userName = L"",
String^ password = L""
)
new :
destinationFile : string *
connectToShare : bool *
?domain : string *
?userName : string *
?password : string
(* Defaults:
let _domain = defaultArg domain ""
let _userName = defaultArg userName ""
let _password = defaultArg password ""
*)
-> ExportDestination
GSF.IO.ExportDestination = function(destinationFile, connectToShare, domain, userName, password);
View SourceParameters
- destinationFile String
- Path and file name of export destination.
- connectToShare Boolean
- Determines whether or not to attempt network connection to share specified in destinationFile.
- domain String (Optional)
- Domain used to authenticate network connection if connectToShare is true.
- userName String (Optional)
- User name used to authenticate network connection if connectToShare is true.
- password String (Optional)
- Password used to authenticate network connection if connectToShare is true.
See Also