LearningModelBinding.Split Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Splits the map view into two views.
public:
virtual void Split([Out] IMapView<Platform::String ^, Platform::Object ^> ^ & first, [Out] IMapView<Platform::String ^, Platform::Object ^> ^ & second) = IMapView<Platform::String ^, Platform::Object ^>::Split;
void Split([Out] IMapView<winrt::hstring, IInspectable const&> const& & first, [Out] IMapView<winrt::hstring, IInspectable const&> const& & second);
public void Split(out IReadOnlyDictionary<string,object> first, out IReadOnlyDictionary<string,object> second);
Public Sub Split (ByRef first As IReadOnlyDictionary(Of String, Object), ByRef second As IReadOnlyDictionary(Of String, Object))
Parameters
One half of the original map.
The second half of the original map.
Remarks
The two views that result from the split operation may not contain the same number of items. The two views do not overlap.
If the map view cannot be split, then both the first and second parameters are null when the method returns.
Windows Server
To use this API on Windows Server, you must use Windows Server 2019 with Desktop Experience.
Thread safety
This API is thread-safe.