mysql> show columns from  Friends;
+-------------+--------------+------+-----+--------------------------------------+-------+
| Field       | Type         | Null | Key | Default                              | Extra |
+-------------+--------------+------+-----+--------------------------------------+-------+
| PrincipalID | varchar(255) | NO   | PRI | 00000000-0000-0000-0000-000000000000 |       |
| Friend      | varchar(255) | NO   | PRI | NULL                                 |       |
| Flags       | varchar(16)  | NO   |     | 0                                    |       |
| Offered     | varchar(32)  | NO   |     | 0                                    |       |
+-------------+--------------+------+-----+--------------------------------------+-------+
4 rows in set (0.00 sec)

Flags [edit]

   [Flags]
   public enum FriendRights : int
   {
       /// <summary>The avatar has no rights</summary>
       None = 0,
       /// <summary>The avatar can see the online status of the target avatar</summary>
       CanSeeOnline = 1,
       /// <summary>The avatar can see the location of the target avatar on the map</summary>
       CanSeeOnMap = 2,
       /// <summary>The avatar can modify the ojects of the target avatar </summary>
       CanModifyObjects = 4
   }

トップ   新規 ページ一覧 検索 最終更新   ヘルプ   最終更新のRSS