LearningModelBinding.Split 方法

定义

将地图视图拆分为两个视图。

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))

参数

first

IReadOnlyDictionary<String,Object>

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

IMapView<winrt::hstring,IInspectable>

原始地图的一半。

second

IReadOnlyDictionary<String,Object>

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

IMapView<winrt::hstring,IInspectable>

原始地图的后半部分。

注解

拆分操作生成的两个视图可能不包含相同数量的项。 这两个视图不重叠。

如果无法拆分地图视图,则该方法返回时,第一个和第二个参数均为 null

Windows Server

若要在 Windows Server 上使用此 API,必须使用具有桌面体验的 Windows Server 2019。

线程安全

此 API 是线程安全的。

适用于