FileSyncScopeFilter.FileNameExcludes Property
Gets the collection of file names to exclude from the scope.
Namespace: Microsoft.Synchronization.Files
Assembly: Microsoft.Synchronization.Files (in Microsoft.Synchronization.Files.dll)
Syntax
'Declaration
Public ReadOnly Property FileNameExcludes As ICollection(Of String)
Get
'Usage
Dim instance As FileSyncScopeFilter
Dim value As ICollection(Of String)
value = instance.FileNameExcludes
public ICollection<string> FileNameExcludes { get; }
public:
property ICollection<String^>^ FileNameExcludes {
ICollection<String^>^ get ();
}
member FileNameExcludes : ICollection<string>
function get FileNameExcludes () : ICollection<String>
Property Value
Type: System.Collections.Generic.ICollection<String>
The collection of file names to exclude from the scope. An empty collection means no files are excluded based on name.
Remarks
Wildcards (* and ?) can be used in file names.