Example #1
0
    public async Task <CloudSpatialAnchor> RefreshAnchorInCloud(CloudSpatialAnchor cloudSpatialAnchor)
    {
        if (SessionStatusIndicators[(int)SessionStatusIndicatorType.ReadyForCreate] < 1)
        {
            return(null);
        }
        await cloudSpatialAnchorSession.RefreshAnchorPropertiesAsync(cloudSpatialAnchor);

        return(cloudSpatialAnchor);
    }