Differences
This shows you the differences between the selected revisions of the page.
| 2012-03-09 | 2012-03-26 | ||
| using object initializer c# (martin) | vb.net signature (martin) | ||
| Line 5: | Line 5: | ||
| ===== Syntax ===== | ===== Syntax ===== | ||
| - | <code csharp> | + | <code csharp *> |
| public SynchronizationResult SynchronizeDirectories( | public SynchronizationResult SynchronizeDirectories( | ||
| SynchronizationMode mode, | SynchronizationMode mode, | ||
| Line 15: | Line 15: | ||
| TransferOptions options = null | TransferOptions options = null | ||
| ) | ) | ||
| + | </code> | ||
| + | |||
| + | <code vbnet *> | ||
| + | Public Function SynchronizeDirectories( _ | ||
| + | ByVal mode As SynchronizationMode, _ | ||
| + | ByVal localPath As String, _ | ||
| + | ByVal remotePath As String, _ | ||
| + | ByVal removeFiles As Boolean, _ | ||
| + | ByVal Optional mirror As Boolean = False, _ | ||
| + | ByVal Optional criteria As SynchronizationCriteria = 1, _ | ||
| + | ByVal Optional options As TransferOptions = new TransferOptions() _ | ||
| + | ) As SynchronizationResult | ||
| </code> | </code> | ||