LearningModelBinding.Split Method

Definition

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

first

IReadOnlyDictionary<String,Object>

IMapView<Platform::String,Platform::Object>

IMapView<winrt::hstring,IInspectable>

One half of the original map.

second

IReadOnlyDictionary<String,Object>

IMapView<Platform::String,Platform::Object>

IMapView<winrt::hstring,IInspectable>

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.

Applies to