├── .gitignore ├── README.md ├── config └── copy_win32_native_dlls.bat ├── demos └── winform │ ├── .gitignore │ ├── AVChat │ ├── AVDevicesSettingForm.Designer.cs │ ├── AVDevicesSettingForm.cs │ ├── AVDevicesSettingForm.resx │ ├── InputRoomIdForm.Designer.cs │ ├── InputRoomIdForm.cs │ ├── InputRoomIdForm.resx │ ├── MultiVChatForm.Designer.cs │ ├── MultiVChatForm.cs │ ├── MultiVChatForm.resx │ ├── MultimediaHandler.cs │ ├── VideoChatForm.Designer.cs │ ├── VideoChatForm.cs │ ├── VideoChatForm.resx │ └── VideoFrame.cs │ ├── ApiTest │ ├── ApiTestForm.Designer.cs │ ├── ApiTestForm.cs │ └── ApiTestForm.resx │ ├── Assets │ ├── logo.ico │ └── logo.png │ ├── Audio │ ├── AudioForm.Designer.cs │ ├── AudioForm.cs │ └── AudioForm.resx │ ├── Beauty │ ├── ColorBalance.cs │ └── Smooth.cs │ ├── ByPassLivingStream │ ├── BypassLivingStreamChoiceForm.Designer.cs │ ├── BypassLivingStreamChoiceForm.cs │ ├── BypassLivingStreamChoiceForm.resx │ ├── BypassLivingStreamCommon.cs │ ├── BypassLivingStreamForm.Designer.cs │ ├── BypassLivingStreamForm.cs │ └── BypassLivingStreamForm.resx │ ├── Chat │ ├── ChatForm.Designer.cs │ ├── ChatForm.cs │ └── ChatForm.resx │ ├── Chatroom │ ├── AvailableRooms.cs │ ├── ChatRoomListForm.Designer.cs │ ├── ChatRoomListForm.cs │ └── ChatRoomListForm.resx │ ├── Dependents │ ├── BouncyCastle.dll │ ├── ICSharpCode.SharpZipLib.dll │ └── Newtonsoft.Json.dll │ ├── Friend │ ├── FriendProfileForm.Designer.cs │ ├── FriendProfileForm.cs │ └── FriendProfileForm.resx │ ├── Helper │ ├── ContextMenuGenerator.cs │ ├── CryptoHelper.cs │ ├── DemoTrace.cs │ ├── DumpHelper.cs │ ├── InfomationForm.Designer.cs │ ├── InfomationForm.cs │ ├── InfomationForm.resx │ ├── InvokeActionWrapper.cs │ ├── ObjectOutput.cs │ ├── ObjectPropertyInfoForm.Designer.cs │ ├── ObjectPropertyInfoForm.cs │ ├── ObjectPropertyInfoForm.resx │ ├── ScreenCaptureHelper.cs │ ├── UserHelper.cs │ └── ZipHelper.cs │ ├── Http │ ├── DocTransForm.Designer.cs │ ├── DocTransForm.cs │ ├── DocTransForm.resx │ ├── HttpForm.Designer.cs │ ├── HttpForm.cs │ └── HttpForm.resx │ ├── LivingStream │ ├── LivingStreamForm.Designer.cs │ ├── LivingStreamForm.cs │ └── LivingStreamForm.resx │ ├── LivingStreamSDK │ ├── LSClientNativeMethods.cs │ ├── LSGlobalDef.cs │ ├── LivingStreamDefine.cs │ ├── LsManage.cs │ ├── YUVHelper.cs │ └── nimSDKHelper.cs │ ├── Login │ ├── AccountManager.cs │ ├── LoginForm.Designer.cs │ ├── LoginForm.cs │ ├── LoginForm.resx │ ├── ProxySettingForm.Designer.cs │ ├── ProxySettingForm.cs │ └── ProxySettingForm.resx │ ├── MainForm │ ├── ClientCallbacks.cs │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ └── MainForm.resx │ ├── Msg │ ├── MessageExport.Designer.cs │ ├── MessageExport.cs │ ├── MessageExport.resx │ ├── MessageLogForm.cs │ ├── MessageLogForm.resx │ ├── MsgAttachmentInfoForm.Designer.cs │ ├── MsgAttachmentInfoForm.cs │ ├── MsgAttachmentInfoForm.resx │ └── SysMsgForm.cs │ ├── NIMDemo.csproj │ ├── NIMDemo.sln │ ├── NIMSDK_Demo.csproj │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── README.md │ ├── Robot │ ├── RobotForm.Designer.cs │ ├── RobotForm.cs │ └── RobotForm.resx │ ├── Rts │ ├── PaintingRecord.cs │ ├── RtsConference.Designer.cs │ ├── RtsConference.cs │ ├── RtsConference.resx │ ├── RtsForm.Designer.cs │ ├── RtsForm.cs │ ├── RtsForm.resx │ └── RtsHandler.cs │ ├── Session │ ├── RecentSessionList.cs │ └── SessionList.cs │ ├── SessionList.cs │ ├── Signaling │ ├── SignalingForm.Designer.cs │ ├── SignalingForm.cs │ └── SignalingForm.resx │ ├── SubscribeEvent │ ├── SubscribeEventForm.Designer.cs │ ├── SubscribeEventForm.cs │ └── SubscribeEventForm.resx │ ├── Team │ ├── CreateAdvancedTeamForm.Designer.cs │ ├── CreateAdvancedTeamForm.cs │ ├── CreateAdvancedTeamForm.resx │ ├── CreateTeamForm.Designer.cs │ ├── CreateTeamForm.cs │ ├── CreateTeamForm.resx │ ├── TeamList.cs │ ├── TeamMembersForm.Designer.cs │ ├── TeamMembersForm.cs │ └── TeamMembersForm.resx │ ├── Tools │ ├── ConfigReader.cs │ ├── OutputForm.Designer.cs │ ├── OutputForm.cs │ ├── OutputForm.resx │ └── OutputInfoText.cs │ ├── app.config │ └── config.json ├── nim.sln └── sdk ├── README.md ├── Src ├── Audio │ ├── NimAudio.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── api │ │ ├── AudioNativeMethods.cs │ │ └── NIMAudioAPI.cs ├── ChatRoom │ ├── CallbackBridge.cs │ ├── ChatRoomApi.cs │ ├── ChatRoomEnumDefine.cs │ ├── ChatRoomInfo.cs │ ├── ChatRoomNativeMethods.cs │ ├── LoginData.cs │ ├── MemberInfo.cs │ ├── MemberProperty.cs │ ├── Message.cs │ ├── NimChatRoom.csproj │ ├── Notification.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Core │ ├── AssemblyInfo.cs │ ├── NimCore.csproj │ ├── Plugin │ │ └── ChatRoom.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Setting.json │ └── api │ │ ├── Core │ │ ├── Client │ │ │ ├── ClientNativeMethods.cs │ │ │ ├── NIMClientAPI.cs │ │ │ └── NIMClientDef.cs │ │ ├── Common │ │ │ ├── NIMGlobalAPI.cs │ │ │ ├── NIMGlobalDef.cs │ │ │ └── NIMGlobalNativeMethods.cs │ │ └── NimException │ │ │ └── SdkException.cs │ │ ├── DataSync │ │ ├── DataSyncNativeMethods.cs │ │ ├── NIMDataSyncAPI.cs │ │ └── NIMDataSyncDef.cs │ │ ├── Device │ │ ├── DeviceNativeMethods.cs │ │ ├── NIMDeviceAPI.cs │ │ └── NIMDeviceDef.cs │ │ ├── DocTransition │ │ ├── DocTransApi.cs │ │ ├── DocTransDef.cs │ │ └── DocTransNativeMethods.cs │ │ ├── Friend │ │ ├── FriendNativeMethods.cs │ │ ├── NIMFriendAPI.cs │ │ ├── NIMFriendChangedInfo.cs │ │ └── NIMFriendDef.cs │ │ ├── Message │ │ ├── MessageAttachmentFactory.cs │ │ ├── MessageFactory.cs │ │ ├── MessageObject │ │ │ ├── NIMAudioMessage.cs │ │ │ ├── NIMBroadcastMessage.cs │ │ │ ├── NIMCustomMessage.cs │ │ │ ├── NIMFileMessage.cs │ │ │ ├── NIMIMMessage.cs │ │ │ ├── NIMImageMessage.cs │ │ │ ├── NIMLocationMessage.cs │ │ │ ├── NIMMessageAttachment.cs │ │ │ ├── NIMTeamNotificationMessage.cs │ │ │ ├── NIMTextMessage.cs │ │ │ ├── NIMTipMessage.cs │ │ │ ├── NIMUnknownMessage.cs │ │ │ └── NIMVedioMessage.cs │ │ ├── NIMMessageEnums.cs │ │ ├── NIMReceivedMessage.cs │ │ ├── NIMTalkAPI.cs │ │ ├── RecallNotification.cs │ │ └── TalkNativeMethods.cs │ │ ├── MessageLog │ │ ├── MsgLogNativeMethods.cs │ │ ├── NIMMsgLogAPI.cs │ │ └── NIMMsgLogDef.cs │ │ ├── NIMToolsAPI.cs │ │ ├── NIMToolsDef.cs │ │ ├── Nos │ │ ├── NIMNosAPI.cs │ │ └── NosNativeMethods.cs │ │ ├── Robot │ │ ├── MessageTemplate.cs │ │ ├── NIMRobotAPI.cs │ │ ├── NimRobotDef.cs │ │ ├── RobotMessage.cs │ │ ├── RobotNativeMethods.cs │ │ └── RobotResponse.cs │ │ ├── Rts │ │ ├── NIMRtsAPI.cs │ │ ├── NIMRtsDef.cs │ │ └── RtsNativeMethods.cs │ │ ├── Session │ │ ├── NIMSessionAPI.cs │ │ ├── NIMSessionDef.cs │ │ └── SessionNativeMethods.cs │ │ ├── Signaling │ │ ├── NIMSignalingAPI.cs │ │ ├── NIMSignalingDef.cs │ │ └── SignalingNativeMethods.cs │ │ ├── Subscribe │ │ ├── NIMEventInfo.cs │ │ ├── NIMSubscribeApi.cs │ │ └── NIMSubscribeNativeMethods.cs │ │ ├── SysMessage │ │ ├── NIMSysMessage.cs │ │ ├── NIMSysMsgAPI.cs │ │ ├── NIMSysMsgDef.cs │ │ └── SysMsgNativeMethods.cs │ │ ├── Team │ │ ├── NIMTeamAPI.cs │ │ ├── NIMTeamDef.cs │ │ ├── NIMTeamEvent.cs │ │ ├── NIMTeamNotificationType.cs │ │ └── TeamNativeMethods.cs │ │ ├── User │ │ ├── NIMUserAPI.cs │ │ ├── NIMUserDef.cs │ │ └── UserNativeMethods.cs │ │ └── VChat │ │ ├── NIMVChatAPI.cs │ │ ├── NIMVChatDef.cs │ │ └── VChatNativeMethods.cs ├── Http │ ├── NIMHttp.sln │ ├── NimHttp.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── api │ │ ├── NIMHttpAPI.cs │ │ └── NIMHttpDef.cs └── Utility │ ├── DateTimeConvert.cs │ ├── DelegateConverter.cs │ ├── Json │ ├── JsonBoolConverter.cs │ ├── JsonExtension.cs │ ├── JsonKeyValuePairConverter.cs │ └── JsonParser.cs │ ├── Log.cs │ ├── MonoPInvokeCallback.cs │ ├── NIMResponseCode.cs │ ├── NativeConfig.cs │ ├── NimConfig.cs │ ├── NimJsonObject.cs │ ├── NimUtility.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── UTF8StringMarshaler.cs │ └── Utilities.cs ├── ThirdParty └── Newtonsoft.Json.dll └── libs └── win32 ├── x64_dlls ├── msvcp120.dll ├── msvcr120.dll ├── nim.dll ├── nim_audio.dll ├── nim_chatroom.dll ├── nim_conf │ └── ver_ctrl.dll ├── nim_tools_http.dll ├── nrtc.dll └── nrtc_audio_process.dll └── x86_dlls ├── msvcp120.dll ├── msvcr120.dll ├── nim.dll ├── nim_audio.dll ├── nim_audio_hook.dll ├── nim_chatroom.dll ├── nim_conf └── ver_ctrl.dll ├── nim_tools_http.dll ├── nrtc.dll └── nrtc_audio_process.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/README.md -------------------------------------------------------------------------------- /config/copy_win32_native_dlls.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/config/copy_win32_native_dlls.bat -------------------------------------------------------------------------------- /demos/winform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/.gitignore -------------------------------------------------------------------------------- /demos/winform/AVChat/AVDevicesSettingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/AVChat/AVDevicesSettingForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/AVChat/AVDevicesSettingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/AVChat/AVDevicesSettingForm.cs -------------------------------------------------------------------------------- /demos/winform/AVChat/AVDevicesSettingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/AVChat/AVDevicesSettingForm.resx -------------------------------------------------------------------------------- /demos/winform/AVChat/InputRoomIdForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/AVChat/InputRoomIdForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/AVChat/InputRoomIdForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/AVChat/InputRoomIdForm.cs -------------------------------------------------------------------------------- /demos/winform/AVChat/InputRoomIdForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/AVChat/InputRoomIdForm.resx -------------------------------------------------------------------------------- /demos/winform/AVChat/MultiVChatForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/AVChat/MultiVChatForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/AVChat/MultiVChatForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/AVChat/MultiVChatForm.cs -------------------------------------------------------------------------------- /demos/winform/AVChat/MultiVChatForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/AVChat/MultiVChatForm.resx -------------------------------------------------------------------------------- /demos/winform/AVChat/MultimediaHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/AVChat/MultimediaHandler.cs -------------------------------------------------------------------------------- /demos/winform/AVChat/VideoChatForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/AVChat/VideoChatForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/AVChat/VideoChatForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/AVChat/VideoChatForm.cs -------------------------------------------------------------------------------- /demos/winform/AVChat/VideoChatForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/AVChat/VideoChatForm.resx -------------------------------------------------------------------------------- /demos/winform/AVChat/VideoFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/AVChat/VideoFrame.cs -------------------------------------------------------------------------------- /demos/winform/ApiTest/ApiTestForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/ApiTest/ApiTestForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/ApiTest/ApiTestForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/ApiTest/ApiTestForm.cs -------------------------------------------------------------------------------- /demos/winform/ApiTest/ApiTestForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/ApiTest/ApiTestForm.resx -------------------------------------------------------------------------------- /demos/winform/Assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Assets/logo.ico -------------------------------------------------------------------------------- /demos/winform/Assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Assets/logo.png -------------------------------------------------------------------------------- /demos/winform/Audio/AudioForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Audio/AudioForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Audio/AudioForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Audio/AudioForm.cs -------------------------------------------------------------------------------- /demos/winform/Audio/AudioForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Audio/AudioForm.resx -------------------------------------------------------------------------------- /demos/winform/Beauty/ColorBalance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Beauty/ColorBalance.cs -------------------------------------------------------------------------------- /demos/winform/Beauty/Smooth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Beauty/Smooth.cs -------------------------------------------------------------------------------- /demos/winform/ByPassLivingStream/BypassLivingStreamChoiceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/ByPassLivingStream/BypassLivingStreamChoiceForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/ByPassLivingStream/BypassLivingStreamChoiceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/ByPassLivingStream/BypassLivingStreamChoiceForm.cs -------------------------------------------------------------------------------- /demos/winform/ByPassLivingStream/BypassLivingStreamChoiceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/ByPassLivingStream/BypassLivingStreamChoiceForm.resx -------------------------------------------------------------------------------- /demos/winform/ByPassLivingStream/BypassLivingStreamCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/ByPassLivingStream/BypassLivingStreamCommon.cs -------------------------------------------------------------------------------- /demos/winform/ByPassLivingStream/BypassLivingStreamForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/ByPassLivingStream/BypassLivingStreamForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/ByPassLivingStream/BypassLivingStreamForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/ByPassLivingStream/BypassLivingStreamForm.cs -------------------------------------------------------------------------------- /demos/winform/ByPassLivingStream/BypassLivingStreamForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/ByPassLivingStream/BypassLivingStreamForm.resx -------------------------------------------------------------------------------- /demos/winform/Chat/ChatForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Chat/ChatForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Chat/ChatForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Chat/ChatForm.cs -------------------------------------------------------------------------------- /demos/winform/Chat/ChatForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Chat/ChatForm.resx -------------------------------------------------------------------------------- /demos/winform/Chatroom/AvailableRooms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Chatroom/AvailableRooms.cs -------------------------------------------------------------------------------- /demos/winform/Chatroom/ChatRoomListForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Chatroom/ChatRoomListForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Chatroom/ChatRoomListForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Chatroom/ChatRoomListForm.cs -------------------------------------------------------------------------------- /demos/winform/Chatroom/ChatRoomListForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Chatroom/ChatRoomListForm.resx -------------------------------------------------------------------------------- /demos/winform/Dependents/BouncyCastle.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Dependents/BouncyCastle.dll -------------------------------------------------------------------------------- /demos/winform/Dependents/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Dependents/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /demos/winform/Dependents/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Dependents/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /demos/winform/Friend/FriendProfileForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Friend/FriendProfileForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Friend/FriendProfileForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Friend/FriendProfileForm.cs -------------------------------------------------------------------------------- /demos/winform/Friend/FriendProfileForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Friend/FriendProfileForm.resx -------------------------------------------------------------------------------- /demos/winform/Helper/ContextMenuGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/ContextMenuGenerator.cs -------------------------------------------------------------------------------- /demos/winform/Helper/CryptoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/CryptoHelper.cs -------------------------------------------------------------------------------- /demos/winform/Helper/DemoTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/DemoTrace.cs -------------------------------------------------------------------------------- /demos/winform/Helper/DumpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/DumpHelper.cs -------------------------------------------------------------------------------- /demos/winform/Helper/InfomationForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/InfomationForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Helper/InfomationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/InfomationForm.cs -------------------------------------------------------------------------------- /demos/winform/Helper/InfomationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/InfomationForm.resx -------------------------------------------------------------------------------- /demos/winform/Helper/InvokeActionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/InvokeActionWrapper.cs -------------------------------------------------------------------------------- /demos/winform/Helper/ObjectOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/ObjectOutput.cs -------------------------------------------------------------------------------- /demos/winform/Helper/ObjectPropertyInfoForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/ObjectPropertyInfoForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Helper/ObjectPropertyInfoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/ObjectPropertyInfoForm.cs -------------------------------------------------------------------------------- /demos/winform/Helper/ObjectPropertyInfoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/ObjectPropertyInfoForm.resx -------------------------------------------------------------------------------- /demos/winform/Helper/ScreenCaptureHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/ScreenCaptureHelper.cs -------------------------------------------------------------------------------- /demos/winform/Helper/UserHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/UserHelper.cs -------------------------------------------------------------------------------- /demos/winform/Helper/ZipHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Helper/ZipHelper.cs -------------------------------------------------------------------------------- /demos/winform/Http/DocTransForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Http/DocTransForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Http/DocTransForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Http/DocTransForm.cs -------------------------------------------------------------------------------- /demos/winform/Http/DocTransForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Http/DocTransForm.resx -------------------------------------------------------------------------------- /demos/winform/Http/HttpForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Http/HttpForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Http/HttpForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Http/HttpForm.cs -------------------------------------------------------------------------------- /demos/winform/Http/HttpForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Http/HttpForm.resx -------------------------------------------------------------------------------- /demos/winform/LivingStream/LivingStreamForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/LivingStream/LivingStreamForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/LivingStream/LivingStreamForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/LivingStream/LivingStreamForm.cs -------------------------------------------------------------------------------- /demos/winform/LivingStream/LivingStreamForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/LivingStream/LivingStreamForm.resx -------------------------------------------------------------------------------- /demos/winform/LivingStreamSDK/LSClientNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/LivingStreamSDK/LSClientNativeMethods.cs -------------------------------------------------------------------------------- /demos/winform/LivingStreamSDK/LSGlobalDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/LivingStreamSDK/LSGlobalDef.cs -------------------------------------------------------------------------------- /demos/winform/LivingStreamSDK/LivingStreamDefine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/LivingStreamSDK/LivingStreamDefine.cs -------------------------------------------------------------------------------- /demos/winform/LivingStreamSDK/LsManage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/LivingStreamSDK/LsManage.cs -------------------------------------------------------------------------------- /demos/winform/LivingStreamSDK/YUVHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/LivingStreamSDK/YUVHelper.cs -------------------------------------------------------------------------------- /demos/winform/LivingStreamSDK/nimSDKHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/LivingStreamSDK/nimSDKHelper.cs -------------------------------------------------------------------------------- /demos/winform/Login/AccountManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Login/AccountManager.cs -------------------------------------------------------------------------------- /demos/winform/Login/LoginForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Login/LoginForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Login/LoginForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Login/LoginForm.cs -------------------------------------------------------------------------------- /demos/winform/Login/LoginForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Login/LoginForm.resx -------------------------------------------------------------------------------- /demos/winform/Login/ProxySettingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Login/ProxySettingForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Login/ProxySettingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Login/ProxySettingForm.cs -------------------------------------------------------------------------------- /demos/winform/Login/ProxySettingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Login/ProxySettingForm.resx -------------------------------------------------------------------------------- /demos/winform/MainForm/ClientCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/MainForm/ClientCallbacks.cs -------------------------------------------------------------------------------- /demos/winform/MainForm/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/MainForm/MainForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/MainForm/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/MainForm/MainForm.cs -------------------------------------------------------------------------------- /demos/winform/MainForm/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/MainForm/MainForm.resx -------------------------------------------------------------------------------- /demos/winform/Msg/MessageExport.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Msg/MessageExport.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Msg/MessageExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Msg/MessageExport.cs -------------------------------------------------------------------------------- /demos/winform/Msg/MessageExport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Msg/MessageExport.resx -------------------------------------------------------------------------------- /demos/winform/Msg/MessageLogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Msg/MessageLogForm.cs -------------------------------------------------------------------------------- /demos/winform/Msg/MessageLogForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Msg/MessageLogForm.resx -------------------------------------------------------------------------------- /demos/winform/Msg/MsgAttachmentInfoForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Msg/MsgAttachmentInfoForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Msg/MsgAttachmentInfoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Msg/MsgAttachmentInfoForm.cs -------------------------------------------------------------------------------- /demos/winform/Msg/MsgAttachmentInfoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Msg/MsgAttachmentInfoForm.resx -------------------------------------------------------------------------------- /demos/winform/Msg/SysMsgForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Msg/SysMsgForm.cs -------------------------------------------------------------------------------- /demos/winform/NIMDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/NIMDemo.csproj -------------------------------------------------------------------------------- /demos/winform/NIMDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/NIMDemo.sln -------------------------------------------------------------------------------- /demos/winform/NIMSDK_Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/NIMSDK_Demo.csproj -------------------------------------------------------------------------------- /demos/winform/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Program.cs -------------------------------------------------------------------------------- /demos/winform/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /demos/winform/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Properties/Resources.resx -------------------------------------------------------------------------------- /demos/winform/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Properties/Settings.settings -------------------------------------------------------------------------------- /demos/winform/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/winform/Robot/RobotForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Robot/RobotForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Robot/RobotForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Robot/RobotForm.cs -------------------------------------------------------------------------------- /demos/winform/Robot/RobotForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Robot/RobotForm.resx -------------------------------------------------------------------------------- /demos/winform/Rts/PaintingRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Rts/PaintingRecord.cs -------------------------------------------------------------------------------- /demos/winform/Rts/RtsConference.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Rts/RtsConference.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Rts/RtsConference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Rts/RtsConference.cs -------------------------------------------------------------------------------- /demos/winform/Rts/RtsConference.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Rts/RtsConference.resx -------------------------------------------------------------------------------- /demos/winform/Rts/RtsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Rts/RtsForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Rts/RtsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Rts/RtsForm.cs -------------------------------------------------------------------------------- /demos/winform/Rts/RtsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Rts/RtsForm.resx -------------------------------------------------------------------------------- /demos/winform/Rts/RtsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Rts/RtsHandler.cs -------------------------------------------------------------------------------- /demos/winform/Session/RecentSessionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Session/RecentSessionList.cs -------------------------------------------------------------------------------- /demos/winform/Session/SessionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Session/SessionList.cs -------------------------------------------------------------------------------- /demos/winform/SessionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/SessionList.cs -------------------------------------------------------------------------------- /demos/winform/Signaling/SignalingForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Signaling/SignalingForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Signaling/SignalingForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Signaling/SignalingForm.cs -------------------------------------------------------------------------------- /demos/winform/Signaling/SignalingForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Signaling/SignalingForm.resx -------------------------------------------------------------------------------- /demos/winform/SubscribeEvent/SubscribeEventForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/SubscribeEvent/SubscribeEventForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/SubscribeEvent/SubscribeEventForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/SubscribeEvent/SubscribeEventForm.cs -------------------------------------------------------------------------------- /demos/winform/SubscribeEvent/SubscribeEventForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/SubscribeEvent/SubscribeEventForm.resx -------------------------------------------------------------------------------- /demos/winform/Team/CreateAdvancedTeamForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Team/CreateAdvancedTeamForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Team/CreateAdvancedTeamForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Team/CreateAdvancedTeamForm.cs -------------------------------------------------------------------------------- /demos/winform/Team/CreateAdvancedTeamForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Team/CreateAdvancedTeamForm.resx -------------------------------------------------------------------------------- /demos/winform/Team/CreateTeamForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Team/CreateTeamForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Team/CreateTeamForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Team/CreateTeamForm.cs -------------------------------------------------------------------------------- /demos/winform/Team/CreateTeamForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Team/CreateTeamForm.resx -------------------------------------------------------------------------------- /demos/winform/Team/TeamList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Team/TeamList.cs -------------------------------------------------------------------------------- /demos/winform/Team/TeamMembersForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Team/TeamMembersForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Team/TeamMembersForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Team/TeamMembersForm.cs -------------------------------------------------------------------------------- /demos/winform/Team/TeamMembersForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Team/TeamMembersForm.resx -------------------------------------------------------------------------------- /demos/winform/Tools/ConfigReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Tools/ConfigReader.cs -------------------------------------------------------------------------------- /demos/winform/Tools/OutputForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Tools/OutputForm.Designer.cs -------------------------------------------------------------------------------- /demos/winform/Tools/OutputForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Tools/OutputForm.cs -------------------------------------------------------------------------------- /demos/winform/Tools/OutputForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Tools/OutputForm.resx -------------------------------------------------------------------------------- /demos/winform/Tools/OutputInfoText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/Tools/OutputInfoText.cs -------------------------------------------------------------------------------- /demos/winform/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/app.config -------------------------------------------------------------------------------- /demos/winform/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/demos/winform/config.json -------------------------------------------------------------------------------- /nim.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/nim.sln -------------------------------------------------------------------------------- /sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/README.md -------------------------------------------------------------------------------- /sdk/Src/Audio/NimAudio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Audio/NimAudio.csproj -------------------------------------------------------------------------------- /sdk/Src/Audio/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Audio/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sdk/Src/Audio/api/AudioNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Audio/api/AudioNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Audio/api/NIMAudioAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Audio/api/NIMAudioAPI.cs -------------------------------------------------------------------------------- /sdk/Src/ChatRoom/CallbackBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/ChatRoom/CallbackBridge.cs -------------------------------------------------------------------------------- /sdk/Src/ChatRoom/ChatRoomApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/ChatRoom/ChatRoomApi.cs -------------------------------------------------------------------------------- /sdk/Src/ChatRoom/ChatRoomEnumDefine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/ChatRoom/ChatRoomEnumDefine.cs -------------------------------------------------------------------------------- /sdk/Src/ChatRoom/ChatRoomInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/ChatRoom/ChatRoomInfo.cs -------------------------------------------------------------------------------- /sdk/Src/ChatRoom/ChatRoomNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/ChatRoom/ChatRoomNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/ChatRoom/LoginData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/ChatRoom/LoginData.cs -------------------------------------------------------------------------------- /sdk/Src/ChatRoom/MemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/ChatRoom/MemberInfo.cs -------------------------------------------------------------------------------- /sdk/Src/ChatRoom/MemberProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/ChatRoom/MemberProperty.cs -------------------------------------------------------------------------------- /sdk/Src/ChatRoom/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/ChatRoom/Message.cs -------------------------------------------------------------------------------- /sdk/Src/ChatRoom/NimChatRoom.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/ChatRoom/NimChatRoom.csproj -------------------------------------------------------------------------------- /sdk/Src/ChatRoom/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/ChatRoom/Notification.cs -------------------------------------------------------------------------------- /sdk/Src/ChatRoom/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/ChatRoom/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sdk/Src/Core/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/AssemblyInfo.cs -------------------------------------------------------------------------------- /sdk/Src/Core/NimCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/NimCore.csproj -------------------------------------------------------------------------------- /sdk/Src/Core/Plugin/ChatRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/Plugin/ChatRoom.cs -------------------------------------------------------------------------------- /sdk/Src/Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sdk/Src/Core/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /sdk/Src/Core/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/Properties/Resources.resx -------------------------------------------------------------------------------- /sdk/Src/Core/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/Resources.Designer.cs -------------------------------------------------------------------------------- /sdk/Src/Core/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/Resources.resx -------------------------------------------------------------------------------- /sdk/Src/Core/Setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/Setting.json -------------------------------------------------------------------------------- /sdk/Src/Core/api/Core/Client/ClientNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Core/Client/ClientNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Core/Client/NIMClientAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Core/Client/NIMClientAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Core/Client/NIMClientDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Core/Client/NIMClientDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Core/Common/NIMGlobalAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Core/Common/NIMGlobalAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Core/Common/NIMGlobalDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Core/Common/NIMGlobalDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Core/Common/NIMGlobalNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Core/Common/NIMGlobalNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Core/NimException/SdkException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Core/NimException/SdkException.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/DataSync/DataSyncNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/DataSync/DataSyncNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/DataSync/NIMDataSyncAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/DataSync/NIMDataSyncAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/DataSync/NIMDataSyncDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/DataSync/NIMDataSyncDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Device/DeviceNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Device/DeviceNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Device/NIMDeviceAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Device/NIMDeviceAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Device/NIMDeviceDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Device/NIMDeviceDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/DocTransition/DocTransApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/DocTransition/DocTransApi.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/DocTransition/DocTransDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/DocTransition/DocTransDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/DocTransition/DocTransNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/DocTransition/DocTransNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Friend/FriendNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Friend/FriendNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Friend/NIMFriendAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Friend/NIMFriendAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Friend/NIMFriendChangedInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Friend/NIMFriendChangedInfo.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Friend/NIMFriendDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Friend/NIMFriendDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageAttachmentFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageAttachmentFactory.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageFactory.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageObject/NIMAudioMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageObject/NIMAudioMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageObject/NIMBroadcastMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageObject/NIMBroadcastMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageObject/NIMCustomMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageObject/NIMCustomMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageObject/NIMFileMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageObject/NIMFileMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageObject/NIMIMMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageObject/NIMIMMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageObject/NIMImageMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageObject/NIMImageMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageObject/NIMLocationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageObject/NIMLocationMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageObject/NIMMessageAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageObject/NIMMessageAttachment.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageObject/NIMTeamNotificationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageObject/NIMTeamNotificationMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageObject/NIMTextMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageObject/NIMTextMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageObject/NIMTipMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageObject/NIMTipMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageObject/NIMUnknownMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageObject/NIMUnknownMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/MessageObject/NIMVedioMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/MessageObject/NIMVedioMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/NIMMessageEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/NIMMessageEnums.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/NIMReceivedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/NIMReceivedMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/NIMTalkAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/NIMTalkAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/RecallNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/RecallNotification.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Message/TalkNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Message/TalkNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/MessageLog/MsgLogNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/MessageLog/MsgLogNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/MessageLog/NIMMsgLogAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/MessageLog/NIMMsgLogAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/MessageLog/NIMMsgLogDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/MessageLog/NIMMsgLogDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/NIMToolsAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/NIMToolsAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/NIMToolsDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/NIMToolsDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Nos/NIMNosAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Nos/NIMNosAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Nos/NosNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Nos/NosNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Robot/MessageTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Robot/MessageTemplate.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Robot/NIMRobotAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Robot/NIMRobotAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Robot/NimRobotDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Robot/NimRobotDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Robot/RobotMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Robot/RobotMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Robot/RobotNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Robot/RobotNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Robot/RobotResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Robot/RobotResponse.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Rts/NIMRtsAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Rts/NIMRtsAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Rts/NIMRtsDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Rts/NIMRtsDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Rts/RtsNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Rts/RtsNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Session/NIMSessionAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Session/NIMSessionAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Session/NIMSessionDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Session/NIMSessionDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Session/SessionNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Session/SessionNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Signaling/NIMSignalingAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Signaling/NIMSignalingAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Signaling/NIMSignalingDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Signaling/NIMSignalingDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Signaling/SignalingNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Signaling/SignalingNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Subscribe/NIMEventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Subscribe/NIMEventInfo.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Subscribe/NIMSubscribeApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Subscribe/NIMSubscribeApi.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Subscribe/NIMSubscribeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Subscribe/NIMSubscribeNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/SysMessage/NIMSysMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/SysMessage/NIMSysMessage.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/SysMessage/NIMSysMsgAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/SysMessage/NIMSysMsgAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/SysMessage/NIMSysMsgDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/SysMessage/NIMSysMsgDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/SysMessage/SysMsgNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/SysMessage/SysMsgNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Team/NIMTeamAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Team/NIMTeamAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Team/NIMTeamDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Team/NIMTeamDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Team/NIMTeamEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Team/NIMTeamEvent.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Team/NIMTeamNotificationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Team/NIMTeamNotificationType.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/Team/TeamNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/Team/TeamNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/User/NIMUserAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/User/NIMUserAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/User/NIMUserDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/User/NIMUserDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/User/UserNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/User/UserNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/VChat/NIMVChatAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/VChat/NIMVChatAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/VChat/NIMVChatDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/VChat/NIMVChatDef.cs -------------------------------------------------------------------------------- /sdk/Src/Core/api/VChat/VChatNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Core/api/VChat/VChatNativeMethods.cs -------------------------------------------------------------------------------- /sdk/Src/Http/NIMHttp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Http/NIMHttp.sln -------------------------------------------------------------------------------- /sdk/Src/Http/NimHttp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Http/NimHttp.csproj -------------------------------------------------------------------------------- /sdk/Src/Http/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Http/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sdk/Src/Http/api/NIMHttpAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Http/api/NIMHttpAPI.cs -------------------------------------------------------------------------------- /sdk/Src/Http/api/NIMHttpDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Http/api/NIMHttpDef.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/DateTimeConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/DateTimeConvert.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/DelegateConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/DelegateConverter.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/Json/JsonBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/Json/JsonBoolConverter.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/Json/JsonExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/Json/JsonExtension.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/Json/JsonKeyValuePairConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/Json/JsonKeyValuePairConverter.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/Json/JsonParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/Json/JsonParser.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/Log.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/MonoPInvokeCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/MonoPInvokeCallback.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/NIMResponseCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/NIMResponseCode.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/NativeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/NativeConfig.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/NimConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/NimConfig.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/NimJsonObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/NimJsonObject.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/NimUtility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/NimUtility.csproj -------------------------------------------------------------------------------- /sdk/Src/Utility/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/UTF8StringMarshaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/UTF8StringMarshaler.cs -------------------------------------------------------------------------------- /sdk/Src/Utility/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/Src/Utility/Utilities.cs -------------------------------------------------------------------------------- /sdk/ThirdParty/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/ThirdParty/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x64_dlls/msvcp120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x64_dlls/msvcp120.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x64_dlls/msvcr120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x64_dlls/msvcr120.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x64_dlls/nim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x64_dlls/nim.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x64_dlls/nim_audio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x64_dlls/nim_audio.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x64_dlls/nim_chatroom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x64_dlls/nim_chatroom.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x64_dlls/nim_conf/ver_ctrl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x64_dlls/nim_conf/ver_ctrl.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x64_dlls/nim_tools_http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x64_dlls/nim_tools_http.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x64_dlls/nrtc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x64_dlls/nrtc.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x64_dlls/nrtc_audio_process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x64_dlls/nrtc_audio_process.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x86_dlls/msvcp120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x86_dlls/msvcp120.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x86_dlls/msvcr120.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x86_dlls/msvcr120.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x86_dlls/nim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x86_dlls/nim.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x86_dlls/nim_audio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x86_dlls/nim_audio.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x86_dlls/nim_audio_hook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x86_dlls/nim_audio_hook.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x86_dlls/nim_chatroom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x86_dlls/nim_chatroom.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x86_dlls/nim_conf/ver_ctrl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x86_dlls/nim_conf/ver_ctrl.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x86_dlls/nim_tools_http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x86_dlls/nim_tools_http.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x86_dlls/nrtc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x86_dlls/nrtc.dll -------------------------------------------------------------------------------- /sdk/libs/win32/x86_dlls/nrtc_audio_process.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netease-im/NIM-CSharp-SDK/HEAD/sdk/libs/win32/x86_dlls/nrtc_audio_process.dll --------------------------------------------------------------------------------