class RoomID (Niantic.Experimental.ARDK.SharedAR.RoomID)

注釈

This is an experimental feature. Experimental features should not be used in production products as they are subject to breaking changes, not officially supported, and may be deprecated without notice

class RoomID: IEquatable< RoomID > {
public:
    // fields

    static readonly RoomID InvalidRoomID = new RoomID("");

    // methods

    override bool Equals(object obj);
    bool Equals(RoomID info);
    override int GetHashCode();
    RoomID(string id);
    override string ToString();
    static implicit operator RoomID (string id);
    static implicit operator string (RoomID id);
};