class ARPersistentAnchorPayload
(Niantic.Lightship.AR.PersistentAnchors.ARPersistentAnchorPayload)
概要
ARPersistentAnchorPayloadは、永続アンカーの保存と復元に使われるデータである。
class ARPersistentAnchorPayload {
public:
// fields
byte[] Data;
// methods
ARPersistentAnchorPayload(byte[] data);
ARPersistentAnchorPayload(string data);
string ToBase64();
};
詳細資料
ARPersistentAnchorPayloadは、永続アンカーの保存と復元に使われるデータである。
フィールド
データ
byte[] Data
ペイロードに関連するデータ
方法
ARPersistentAnchorPayload
ARPersistentAnchorPayload(byte[] data)
新しい [ARPersistentAnchorPayload](./index.mdx)を作成する。
**パラメーター
data`` - ペイロードに関連付けられたデータ。
ARPersistentAnchorPayload
ARPersistentAnchorPayload(string data)
新しい [ARPersistentAnchorPayload](./index.mdx)を作成する。
**パラメーター
data`` - ペイロードのベースとなる64文字列。
ToBase64
string ToBase64()
ペイロードを64進数の文字列に変換します。
**返品について
ペイロードの文字列表現。 ペイロードにデータが存在しない場合はNULLを返す。