index
title: class ARPersistentAnchorPayload toc_max_heading_level: 4
class ARPersistentAnchorPayload
(Niantic.Lightship.AR.PersistentAnchors.ARPersistentAnchorPayload)
概要
ARPersistentAnchorPayload は、永続アンカーの保存と復元に使用されるデータである。
class ARPersistentAnchorPayload {
public:
// フィールド
byte[] Data;
// メソッド
ARPersistentAnchorPayload(byte[] data);
ARPersistentAnchorPayload(string data);
string ToBase64();
};
詳細なドキュメント
ARPersistentAnchorPayload は、永続アンカーの保存と復元に使用されるデータである。
フィールド
データ
byte[] Data
ペイロードに関連するデータ
メソッド
ARPersistentAnchorPayload
ARPersistentAnchorPayload(byte[] data)
新しい ARPersistentAnchorPayloadを作成します。
パラメーター:
data
- ペイロードに関連付けられているデータ。
ARPersistentAnchorPayload
ARPersistentAnchorPayload(string data)
新しい ARPersistentAnchorPayloadを作成します。
パラメーター:
data
- ペイロードを作成するためのbase64文字列。
ToBase64
string ToBase64()
ペイロードを64進数の文字列に変換します。
次の値が返ります。
ペイロードの文字列表現。 ペイロードにデータが存在しない場合はNULLを返す。