本文へスキップ

class ARPersistentAnchorPayload

(Niantic.Lightship.AR.PersistentAnchors.ARPersistentAnchorPayload)

概要

ARPersistentAnchorPayloadは、永続アンカーの保存と復元に使われるデータである。

class ARPersistentAnchorPayload {
public
// フィールド

byte[] Data;

// メソッド

ARPersistentAnchorPayload(byte[] data);
ARPersistentAnchorPayload(string data);
string ToBase64();
}

詳細なドキュメント

ARPersistentAnchorPayloadは、永続アンカーの保存と復元に使われるデータである。

フィールド

Data

byte[] Data

ペイロードに関連するデータ

メソッド

ARPersistentAnchorPayload

ARPersistentAnchorPayload(byte[] data)

新しい [ARPersistentAnchorPayload](./index.mdx)を作成する。

    パラメーター:

    data - ペイロードに関連付けられたデータ。

ARPersistentAnchorPayload

ARPersistentAnchorPayload(string data)

新しい [ARPersistentAnchorPayload](./index.mdx)を作成する。

    パラメーター:

    data - ペイロードのベースとなる64文字列。

ToBase64

string ToBase64()

ペイロードを64進数の文字列に変換します。

    戻り値:

    ペイロードの文字列表現。 ペイロードにデータが存在しない場合はNULLを返す。