ResourceManagementClientSaveResourcesParallel Method (IEnumerableResourceObject, Int32, CultureInfo) |
Saves the specified resources in the resource management service. Each update is performed on its own thread
Namespace:
Lithnet.ResourceManagement.Client
Assembly:
Lithnet.ResourceManagement.Client (in Lithnet.ResourceManagement.Client.dll) Version: 1.0.6435.24467
Syntaxpublic void SaveResourcesParallel(
IEnumerable<ResourceObject> resources,
int maxDegreeOfParallelism,
CultureInfo locale
)
Public Sub SaveResourcesParallel (
resources As IEnumerable(Of ResourceObject),
maxDegreeOfParallelism As Integer,
locale As CultureInfo
)
public:
void SaveResourcesParallel(
IEnumerable<ResourceObject^>^ resources,
int maxDegreeOfParallelism,
CultureInfo^ locale
)
Parameters
- resources
- Type: System.Collections.GenericIEnumerableResourceObject
The resources to save - maxDegreeOfParallelism
- Type: SystemInt32
The maximum number of threads to use for the operation - locale
- Type: System.GlobalizationCultureInfo
The localization culture to use when saving the object
Remarks
This method will reorder the operations to perform creates first, followed by updates and finally deletes
See Also