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