Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
auto-tx
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vamp
auto-tx
Commits
d9b3f473
Commit
d9b3f473
authored
7 years ago
by
Niko Ehrenfeuchter
Browse files
Options
Downloads
Patches
Plain Diff
Start adding XML docstrings to the config class.
parent
59118d42
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
AutoTx/XmlConfiguration.cs
+34
-0
34 additions, 0 deletions
AutoTx/XmlConfiguration.cs
with
34 additions
and
0 deletions
AutoTx/XmlConfiguration.cs
+
34
−
0
View file @
d9b3f473
...
...
@@ -27,13 +27,47 @@ namespace AutoTx
[
Serializable
]
public
class
XmlConfiguration
{
/// <summary>
/// A human friendly name for the host, to be used in emails etc.
/// </summary>
public
string
HostAlias
{
get
;
set
;
}
/// <summary>
/// A human friendly name for the target, to be used in emails etc.
/// </summary>
public
string
DestinationAlias
{
get
;
set
;
}
/// <summary>
/// The base drive for the spooling directories (incoming and managed).
/// </summary>
public
string
SourceDrive
{
get
;
set
;
}
/// <summary>
/// The name of a directory on SourceDrive that is monitored for new files.
/// </summary>
public
string
IncomingDirectory
{
get
;
set
;
}
/// <summary>
/// The name of a marker file to be placed in all **sub**directories
/// inside the IncomingDirectory.
/// </summary>
public
string
MarkerFile
{
get
;
set
;
}
/// <summary>
/// A directory on SourceDrive to hold the three subdirectories "DONE",
/// "PROCESSING" and "UNMATCHED" used during and after transfers.
/// </summary>
public
string
ManagedDirectory
{
get
;
set
;
}
/// <summary>
/// Target path to transfer files to. Usually a UNC location.
/// </summary>
public
string
DestinationDirectory
{
get
;
set
;
}
/// <summary>
/// The name of a subdirectory in the DestinationDirectory to be used
/// to keep the temporary data of running transfers.
/// </summary>
public
string
TmpTransferDir
{
get
;
set
;
}
public
string
SmtpHost
{
get
;
set
;
}
public
string
SmtpUserCredential
{
get
;
set
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment