We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如题,目前例如获取群员列表等操作全都放在了AccountManager中,在实际使用过程中感觉很反直觉(这部分也没有在文档中列出,我还是翻源码才发现它是在AccountManager里的…) 希望将AccountManager的.GetGroupMembersAsync()获取群成员列表,.GetGroupsAsync()获取群列表等方法在GroupManager中建立映射。 其实我是觉得应该直接把这些方法放在GroupManager里会更好一些的,尤其是目前获取群成员Member对象的方法位于GroupManager.GetMemberAsync(),而获取群成员Profile的方法位于AccountManager.GetMemberProfileAsync(),这部分感觉有些混乱了。
AccountManager
.GetGroupMembersAsync()
.GetGroupsAsync()
GroupManager
Member
GroupManager.GetMemberAsync()
Profile
AccountManager.GetMemberProfileAsync()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
如题,目前例如获取群员列表等操作全都放在了
AccountManager
中,在实际使用过程中感觉很反直觉(这部分也没有在文档中列出,我还是翻源码才发现它是在AccountManager
里的…)希望将
AccountManager
的.GetGroupMembersAsync()
获取群成员列表,.GetGroupsAsync()
获取群列表等方法在GroupManager中建立映射。其实我是觉得应该直接把这些方法放在
GroupManager
里会更好一些的,尤其是目前获取群成员Member
对象的方法位于GroupManager.GetMemberAsync()
,而获取群成员Profile
的方法位于AccountManager.GetMemberProfileAsync()
,这部分感觉有些混乱了。The text was updated successfully, but these errors were encountered: