Printing3DModel.TryPartialRepairAsync Method

Definition

Overloads

TryPartialRepairAsync()

Executes the 3D model repair algorithm until complete or an exception is thrown.

TryPartialRepairAsync(TimeSpan)

Begins the 3D model repair algorithm, but exits if the time limit is reached.

TryPartialRepairAsync()

Executes the 3D model repair algorithm until complete or an exception is thrown.

public:
 virtual IAsyncOperation<bool> ^ TryPartialRepairAsync() = TryPartialRepairAsync;
/// [Windows.Foundation.Metadata.Overload("TryPartialRepairAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> TryPartialRepairAsync();
[Windows.Foundation.Metadata.Overload("TryPartialRepairAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> TryPartialRepairAsync();
function tryPartialRepairAsync()
Public Function TryPartialRepairAsync () As IAsyncOperation(Of Boolean)

Returns

true if the asynchronous operation succeeded; otherwise, false.

Attributes

Windows requirements

Device family
Windows 10 Anniversary Edition (introduced in 10.0.14393.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
API contract
Windows.Graphics.Printing3D.Printing3DContract (introduced in v3.0)

Remarks

Until April 2022 Microsoft offered an online 3D Model Repair service. Please find information on alternative tools, such as 3D Builder, at this address.

See also

Applies to

TryPartialRepairAsync(TimeSpan)

Begins the 3D model repair algorithm, but exits if the time limit is reached.

public:
 virtual IAsyncOperation<bool> ^ TryPartialRepairAsync(TimeSpan maxWaitTime) = TryPartialRepairAsync;
/// [Windows.Foundation.Metadata.Overload("TryPartialRepairWithTimeAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> TryPartialRepairAsync(TimeSpan const& maxWaitTime);
[Windows.Foundation.Metadata.Overload("TryPartialRepairWithTimeAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> TryPartialRepairAsync(System.TimeSpan maxWaitTime);
function tryPartialRepairAsync(maxWaitTime)
Public Function TryPartialRepairAsync (maxWaitTime As TimeSpan) As IAsyncOperation(Of Boolean)

Parameters

maxWaitTime
TimeSpan TimeSpan

Defines the amount of time (in seconds) that the algorithm can run for. A value of 0 will cause the algorithm to run until another end condition is met.

Returns

true if the asynchronous operation succeeded; otherwise, false.

Attributes

Windows requirements

Device family
Windows 10 Anniversary Edition (introduced in 10.0.14393.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
API contract
Windows.Graphics.Printing3D.Printing3DContract (introduced in v3.0)

Remarks

Until April 2022 Microsoft offered an online 3D Model Repair service. Please find information on alternative tools, such as 3D Builder, at this address.

See also

Applies to