Show / Hide Table of Contents

Method IsDirectReadSupportedAsync

IsDirectReadSupportedAsync(String)

Checks if the mobile scene package (.mspk) can be read directly without requiring to be unpacked. Always returns true after deprecation in version 100.7.

Declaration
public static Task<bool> IsDirectReadSupportedAsync(string mobileScenePackageFilePath)
Parameters
Type Name Description
String mobileScenePackageFilePath

the path to a mobile scene package file (.mspk)

Returns
Type Description
Task<System.Boolean>

A representing the asynchronous operation.

Remarks

Prior to ArcGIS Runtime version 100.7, some data formats (such as RasterLayer) could only be accessed if they were unpacked from a mobile scene package file (.mspk). In these situations, this method would return false and you would need to call UnpackAsync(String, String) to unpack the mspk file.

From version 100.7 and onwards this limitation has been removed allowing the data to be read directly from the mobile scene package. This method always returns a result of true.

Since this method is no longer required it can be removed from calling code including any subsequent use of UnpackAsync(String, String).

Exceptions
Type Condition
ExpiredException

Package was authored to prevent expired access.

Applies to

Platforms and versions
TargetVersions
.NET Standard 2.0100.5 - 100.13
.NET Framework100.5 - 100.8
.NET 5100.11
.NET Core 3.1100.7 - 100.8
Xamarin.Android100.5 - 100.13
Xamarin.iOS100.5 - 100.8
UWP100.5 - 100.15
In This Article
Back to top Copyright © 2022 Esri.