├── .config └── dotnet-tools.json ├── .github ├── ISSUE_TEMPLATE │ └── bug--.md ├── dependabot.yml └── workflows │ └── pr-build-check.yml ├── .gitignore ├── LICENSE ├── README.md └── src ├── Benchmarks └── CommandLineBenchmark │ ├── Benchmarks.cs │ ├── CommandLineBenchmark.csproj │ ├── Program.cs │ ├── UrlEncodeTest.cs │ └── passwords.txt ├── Directory.Build.props ├── Directory.Build.targets ├── MilkiBotFramework.Aspnetcore ├── AspnetcoreBotBuilder.cs ├── AspnetcoreConnector.cs ├── HttpMiddleware.cs ├── MilkiBotFramework.Aspnetcore.csproj └── ReverseWebsocketMiddleware.cs ├── MilkiBotFramework.Imaging.Avalonia ├── AssemblyInfo.cs ├── AvaImageHelper.cs ├── AvaRenderingControl.cs ├── AvaRenderingProcessor.cs ├── AvaloniaOptions.cs ├── DefaultApp.axaml ├── DefaultApp.axaml.cs ├── DpiDecorator.cs ├── Internal │ ├── Delegates.cs │ ├── DrawingWindow.cs │ └── UiThreadHelper.cs ├── LocalFontManager.cs ├── LocaleComparer.cs ├── MilkiBotFramework.Imaging.Avalonia.csproj ├── RangeObservableCollection.cs ├── RenderResult.cs └── app.manifest ├── MilkiBotFramework.Imaging.Wpf ├── DpiDecorator.cs ├── Internal │ ├── Delegates.cs │ ├── HiddenWindow.cs │ └── UiThreadHelper.cs ├── MilkiBotFramework.Imaging.Wpf.csproj ├── WpfDrawingControl.cs ├── WpfDrawingProcessor.cs └── WpfImageHelper.cs ├── MilkiBotFramework.sln ├── MilkiBotFramework.sln.DotSettings ├── MilkiBotFramework ├── Bot.cs ├── BotBuilder.cs ├── BotBuilderBase.cs ├── BotOptions.cs ├── ConfigLoggerProvider.cs ├── Connecting │ ├── ConnectionType.cs │ ├── IConnector.cs │ ├── IConnectorConfigurable.cs │ ├── IMessageApi.cs │ ├── IWebSocketConnector.cs │ ├── LightHttpClient.cs │ ├── LightHttpClientCreationOptions.cs │ ├── RequestContext.cs │ ├── StandardIoConnector.cs │ ├── WebSocketAsyncMessage.cs │ ├── WebSocketClientConnector.cs │ ├── WebSocketMessageFilter.cs │ ├── WebSocketMessageSession.cs │ ├── WebSocketMessageSessionManager.cs │ └── WebSocketServerConnector.cs ├── ContactsManaging │ ├── ContactsManagerBase.cs │ ├── ContactsManagerExtensions.cs │ ├── ContactsUpdateEvent.cs │ ├── ContactsUpdateSingleEvent.cs │ ├── IContactsManager.cs │ ├── Models │ │ ├── Avatar.cs │ │ ├── ChannelInfo.cs │ │ ├── MemberInfo.cs │ │ ├── MemberRole.cs │ │ ├── PrivateInfo.cs │ │ └── SelfInfo.cs │ └── Results │ │ ├── ChannelInfoResult.cs │ │ ├── ContactsUpdateInfo.cs │ │ ├── ContactsUpdateRole.cs │ │ ├── ContactsUpdateType.cs │ │ ├── MemberInfoResult.cs │ │ ├── PrivateInfoResult.cs │ │ ├── ResultInfoBase.cs │ │ └── SelfInfoResult.cs ├── Data │ ├── IInvokableViewModel.cs │ ├── InvokableViewModelExtensions.cs │ └── ViewModelBase.cs ├── Dispatching │ ├── DispatchMessageEvent.cs │ ├── DispatcherBase.cs │ └── IDispatcher.cs ├── Event │ ├── EventBus.cs │ └── IEventBusEvent.cs ├── FrameworkConstants.cs ├── Imaging │ ├── GifFrame.cs │ ├── GifProcessOptions.cs │ ├── IDrawingProcessor.cs │ ├── ImageEncodingOptions.cs │ ├── ImageHelper.cs │ └── ImageType.cs ├── Messaging │ ├── AsyncMessage.cs │ ├── AsyncMessageResponse.cs │ ├── AsyncMessageTimeoutException.cs │ ├── DefaultRichMessageConverter.cs │ ├── IAsyncMessage.cs │ ├── IAsyncMessageResponse.cs │ ├── IResponse.cs │ ├── IRichMessageConverter.cs │ ├── MessageAuthority.cs │ ├── MessageContext.cs │ ├── MessageIdentity.cs │ ├── MessageResponse.cs │ ├── MessageTimeoutException.cs │ ├── MessageType.cs │ ├── MessageUserIdentity.cs │ └── RichMessages │ │ ├── At.cs │ │ ├── FileImage.cs │ │ ├── IRichMessage.cs │ │ ├── LinkImage.cs │ │ ├── MemoryImage.cs │ │ ├── Reply.cs │ │ ├── RichMessage.cs │ │ ├── Text.cs │ │ ├── UriText.cs │ │ └── Voice.cs ├── MilkiBotFramework.csproj ├── Plugining │ ├── Attributes │ │ ├── ArgumentAttribute.cs │ │ ├── CommandHandlerAttribute.cs │ │ ├── OptionAttribute.cs │ │ ├── ParameterAttribute.cs │ │ ├── PluginIdentifierAttribute.cs │ │ ├── PluginLifetimeAttribute.cs │ │ ├── RegexCommandAttribute.cs │ │ └── RegexCommandHandlerAttribute.cs │ ├── BasicPlugin.cs │ ├── BindingException.cs │ ├── BindingFailureType.cs │ ├── BindingSource.cs │ ├── CommandInjector.cs │ ├── CommandLine │ │ ├── CommandLineAnalyzer.cs │ │ ├── CommandLineAuthority.cs │ │ ├── CommandLineException.cs │ │ ├── CommandLineResult.cs │ │ ├── ICommandLineAnalyzer.cs │ │ └── StreamCommandLineAnalyzer.cs │ ├── Configuration │ │ ├── CommentGatheringTypeInspector.cs │ │ ├── CommentsObjectDescriptor.cs │ │ ├── CommentsObjectGraphVisitor.cs │ │ ├── Configuration.cs │ │ ├── ConfigurationBase.cs │ │ ├── ConfigurationFactory.cs │ │ ├── DateTimeOffsetConverter.cs │ │ ├── IConfiguration.cs │ │ ├── MessageIdentityConverter.cs │ │ └── YamlConverter.cs │ ├── Database │ │ └── PluginDbContext.cs │ ├── IMessagePlugin.cs │ ├── LegacyPluginExtensions.cs │ ├── Loading │ │ ├── AssemblyContext.cs │ │ ├── CommandInfo.cs │ │ ├── CommandParameterInfo.cs │ │ ├── CommandReturnType.cs │ │ ├── DefaultParameterConverter.cs │ │ ├── IParameterConverter.cs │ │ ├── LoaderContext.cs │ │ ├── ModelBindingInfo.cs │ │ └── PluginInfo.cs │ ├── PluginBase.cs │ ├── PluginLifetime.cs │ ├── PluginManager.Initialization.cs │ ├── PluginManager.cs │ ├── PluginMetadata.cs │ ├── PluginType.cs │ └── ServicePlugin.cs ├── StaticTypes.cs ├── Tasking │ ├── BotTaskScheduler.cs │ ├── DateTimeExtensions.cs │ ├── TaskContext.cs │ ├── TaskExecutionHandler.cs │ ├── TaskInstance.cs │ ├── TaskOption.cs │ ├── TaskOptionBuilder.cs │ ├── TimestampOffset.cs │ ├── Trigger.cs │ └── TriggerTimestampUnit.cs └── Utils │ ├── AssemblyHelper.cs │ ├── AsyncLock.cs │ ├── HttpEncoder.cs │ ├── HttpHelperExtensions.cs │ ├── Utilities.cs │ ├── ValueListBuilder.cs │ └── WaitHandleExtensions.cs ├── Platforms ├── MilkiBotFramework.Platforms.GoCqHttp │ ├── BotBuilderExtensions.cs │ ├── Connecting │ │ ├── GoCqApi.cs │ │ ├── GoCqApiException.cs │ │ ├── GoCqClient.cs │ │ ├── GoCqKestrelConnector.cs │ │ ├── GoCqServer.cs │ │ ├── GoCqWebsocketHelper.cs │ │ ├── IGoCqConnector.cs │ │ ├── RequestModel │ │ │ ├── FriendAddRequest.cs │ │ │ ├── GoCqRequest.cs │ │ │ ├── GroupAddRequest.cs │ │ │ ├── GroupMsgResponse.cs │ │ │ ├── PrivateMsgResponse.cs │ │ │ ├── SendDiscussMsg.cs │ │ │ ├── SendGroupMsg.cs │ │ │ └── SendPrivateMsg.cs │ │ └── ResponseModel │ │ │ ├── ChannelType.cs │ │ │ ├── FriendInfo.cs │ │ │ ├── GetMsgResponse.cs │ │ │ ├── GoCqApiResponse.cs │ │ │ ├── GroupInfo.cs │ │ │ ├── GroupMemberInfo.cs │ │ │ ├── Guild │ │ │ ├── GetGuildMembersResponse.cs │ │ │ ├── GuildBrief.cs │ │ │ ├── GuildInfo.cs │ │ │ ├── GuildMember.cs │ │ │ ├── SlowMode.cs │ │ │ └── SubChannelInfo.cs │ │ │ ├── LoginInfo.cs │ │ │ ├── MsgResponse.cs │ │ │ └── StrangerInfo.cs │ ├── ContactsManaging │ │ └── GoCqContactsManager.cs │ ├── Dispatching │ │ └── GoCqDispatcher.cs │ ├── GoCqBotOptions.cs │ ├── GoCqConnection.cs │ ├── GoCqParameterConverter.cs │ ├── Internal │ │ ├── Int64ToStringConverter.cs │ │ └── UnixDateTimeConverter.cs │ ├── Messaging │ │ ├── CqCodes │ │ │ ├── CQAt.cs │ │ │ ├── CQCodeHelper.cs │ │ │ ├── CQDice.cs │ │ │ ├── CQFace.cs │ │ │ ├── CQImage.cs │ │ │ ├── CQImageType.cs │ │ │ ├── CQMusic.cs │ │ │ ├── CQRecord.cs │ │ │ ├── CQReply.cs │ │ │ ├── CQRps.cs │ │ │ ├── CQShare.cs │ │ │ └── CQUnknown.cs │ │ ├── Events │ │ │ ├── EventBase.cs │ │ │ ├── FriendAdd.cs │ │ │ ├── FriendRequest.cs │ │ │ ├── GroupAdminChange.cs │ │ │ ├── GroupFileUpload.cs │ │ │ ├── GroupInvite.cs │ │ │ ├── GroupMemberChange.cs │ │ │ ├── GroupMessage.cs │ │ │ ├── GuildMessage.cs │ │ │ ├── IDetailedSenderMessage.cs │ │ │ ├── MessageBase.cs │ │ │ ├── PrivateMessage.cs │ │ │ └── SenderBase.cs │ │ ├── GoCqMessageContext.cs │ │ ├── GoCqMessageConverter.cs │ │ └── RangeComparer.cs │ ├── MilkiBotFramework.Platforms.GoCqHttp.csproj │ └── Utils │ │ ├── EncodingHelper.cs │ │ └── RegexHelper.cs └── MilkiBotFramework.Platforms.QQ │ ├── BotBuilderExtensions.cs │ ├── Connecting │ ├── Intents.cs │ ├── OpCode.cs │ ├── QApi.cs │ ├── QApiConnector.cs │ ├── QApiException.cs │ ├── QApiHttpMiddleware.cs │ └── QApiWsConnector.cs │ ├── ContactsManaging │ └── QContactsManager.cs │ ├── Dispatching │ └── QDispatcher.cs │ ├── Messaging │ ├── QMessageContext.cs │ ├── QMessageConverter.cs │ └── RichMessages │ │ └── ImagePlaceholder.cs │ ├── MilkiBotFramework.Platforms.QQ.csproj │ ├── MinIOOptions.cs │ ├── ObjectStore │ ├── IObjectStorageProvider.cs │ ├── MinIOProvider.cs │ └── QiniuProvider.cs │ ├── OssOptions.cs │ ├── QBotBuilder.cs │ ├── QConnection.cs │ ├── QParameterConverter.cs │ └── QQBotOptions.cs ├── Samples ├── DemoBot │ ├── DemoBot.csproj │ ├── DemoPlugin.cs │ ├── DemoPlugin2.cs │ ├── DemoServicePlugin.cs │ ├── MyPluginDbContext.cs │ ├── Program.cs │ ├── TestConfiguration.cs │ ├── WeatherForecast.cs │ └── WeatherForecastController.cs └── DemoPlugin │ ├── AnotherServicePlugin.cs │ └── DemoPlugin.csproj └── Tests ├── AvaHeadlessTest ├── App.axaml ├── App.axaml.cs ├── Assets │ └── Fonts │ │ └── readme.md ├── AvaHeadlessTest.csproj ├── AvaTestControl.axaml ├── AvaTestControl.axaml.cs ├── Program.cs └── Properties │ └── launchSettings.json ├── MinioTest ├── MinioTest.csproj └── Program.cs └── UnitTests ├── CommandLineTests.cs ├── UnitTests.csproj └── passwords.txt /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug--.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/.github/ISSUE_TEMPLATE/bug--.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pr-build-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/.github/workflows/pr-build-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/README.md -------------------------------------------------------------------------------- /src/Benchmarks/CommandLineBenchmark/Benchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Benchmarks/CommandLineBenchmark/Benchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/CommandLineBenchmark/CommandLineBenchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Benchmarks/CommandLineBenchmark/CommandLineBenchmark.csproj -------------------------------------------------------------------------------- /src/Benchmarks/CommandLineBenchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Benchmarks/CommandLineBenchmark/Program.cs -------------------------------------------------------------------------------- /src/Benchmarks/CommandLineBenchmark/UrlEncodeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Benchmarks/CommandLineBenchmark/UrlEncodeTest.cs -------------------------------------------------------------------------------- /src/Benchmarks/CommandLineBenchmark/passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Benchmarks/CommandLineBenchmark/passwords.txt -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/MilkiBotFramework.Aspnetcore/AspnetcoreBotBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Aspnetcore/AspnetcoreBotBuilder.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Aspnetcore/AspnetcoreConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Aspnetcore/AspnetcoreConnector.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Aspnetcore/HttpMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Aspnetcore/HttpMiddleware.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Aspnetcore/MilkiBotFramework.Aspnetcore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Aspnetcore/MilkiBotFramework.Aspnetcore.csproj -------------------------------------------------------------------------------- /src/MilkiBotFramework.Aspnetcore/ReverseWebsocketMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Aspnetcore/ReverseWebsocketMiddleware.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("AvaHeadlessTest")] -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/AvaImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/AvaImageHelper.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/AvaRenderingControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/AvaRenderingControl.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/AvaRenderingProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/AvaRenderingProcessor.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/AvaloniaOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/AvaloniaOptions.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/DefaultApp.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/DefaultApp.axaml -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/DefaultApp.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/DefaultApp.axaml.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/DpiDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/DpiDecorator.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/Internal/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/Internal/Delegates.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/Internal/DrawingWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/Internal/DrawingWindow.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/Internal/UiThreadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/Internal/UiThreadHelper.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/LocalFontManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/LocalFontManager.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/LocaleComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/LocaleComparer.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/MilkiBotFramework.Imaging.Avalonia.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/MilkiBotFramework.Imaging.Avalonia.csproj -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/RangeObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/RangeObservableCollection.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/RenderResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/RenderResult.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Avalonia/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Avalonia/app.manifest -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Wpf/DpiDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Wpf/DpiDecorator.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Wpf/Internal/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Wpf/Internal/Delegates.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Wpf/Internal/HiddenWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Wpf/Internal/HiddenWindow.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Wpf/Internal/UiThreadHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Wpf/Internal/UiThreadHelper.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Wpf/MilkiBotFramework.Imaging.Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Wpf/MilkiBotFramework.Imaging.Wpf.csproj -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Wpf/WpfDrawingControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Wpf/WpfDrawingControl.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Wpf/WpfDrawingProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Wpf/WpfDrawingProcessor.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.Imaging.Wpf/WpfImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.Imaging.Wpf/WpfImageHelper.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.sln -------------------------------------------------------------------------------- /src/MilkiBotFramework.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework.sln.DotSettings -------------------------------------------------------------------------------- /src/MilkiBotFramework/Bot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Bot.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/BotBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/BotBuilder.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/BotBuilderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/BotBuilderBase.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/BotOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/BotOptions.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ConfigLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ConfigLoggerProvider.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/ConnectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/ConnectionType.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/IConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/IConnector.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/IConnectorConfigurable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/IConnectorConfigurable.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/IMessageApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/IMessageApi.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/IWebSocketConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/IWebSocketConnector.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/LightHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/LightHttpClient.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/LightHttpClientCreationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/LightHttpClientCreationOptions.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/RequestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/RequestContext.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/StandardIoConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/StandardIoConnector.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/WebSocketAsyncMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/WebSocketAsyncMessage.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/WebSocketClientConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/WebSocketClientConnector.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/WebSocketMessageFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/WebSocketMessageFilter.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/WebSocketMessageSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/WebSocketMessageSession.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/WebSocketMessageSessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/WebSocketMessageSessionManager.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Connecting/WebSocketServerConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Connecting/WebSocketServerConnector.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/ContactsManagerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/ContactsManagerBase.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/ContactsManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/ContactsManagerExtensions.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/ContactsUpdateEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/ContactsUpdateEvent.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/ContactsUpdateSingleEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/ContactsUpdateSingleEvent.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/IContactsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/IContactsManager.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/Models/Avatar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/Models/Avatar.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/Models/ChannelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/Models/ChannelInfo.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/Models/MemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/Models/MemberInfo.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/Models/MemberRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/Models/MemberRole.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/Models/PrivateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/Models/PrivateInfo.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/Models/SelfInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/Models/SelfInfo.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/Results/ChannelInfoResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/Results/ChannelInfoResult.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/Results/ContactsUpdateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/Results/ContactsUpdateInfo.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/Results/ContactsUpdateRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/Results/ContactsUpdateRole.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/Results/ContactsUpdateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/Results/ContactsUpdateType.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/Results/MemberInfoResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/Results/MemberInfoResult.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/Results/PrivateInfoResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/Results/PrivateInfoResult.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/Results/ResultInfoBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/Results/ResultInfoBase.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/ContactsManaging/Results/SelfInfoResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/ContactsManaging/Results/SelfInfoResult.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Data/IInvokableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Data/IInvokableViewModel.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Data/InvokableViewModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Data/InvokableViewModelExtensions.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Data/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Data/ViewModelBase.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Dispatching/DispatchMessageEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Dispatching/DispatchMessageEvent.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Dispatching/DispatcherBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Dispatching/DispatcherBase.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Dispatching/IDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Dispatching/IDispatcher.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Event/EventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Event/EventBus.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Event/IEventBusEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Event/IEventBusEvent.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/FrameworkConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/FrameworkConstants.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Imaging/GifFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Imaging/GifFrame.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Imaging/GifProcessOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Imaging/GifProcessOptions.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Imaging/IDrawingProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Imaging/IDrawingProcessor.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Imaging/ImageEncodingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Imaging/ImageEncodingOptions.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Imaging/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Imaging/ImageHelper.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Imaging/ImageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Imaging/ImageType.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/AsyncMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/AsyncMessage.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/AsyncMessageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/AsyncMessageResponse.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/AsyncMessageTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/AsyncMessageTimeoutException.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/DefaultRichMessageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/DefaultRichMessageConverter.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/IAsyncMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/IAsyncMessage.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/IAsyncMessageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/IAsyncMessageResponse.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/IResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/IResponse.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/IRichMessageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/IRichMessageConverter.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/MessageAuthority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/MessageAuthority.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/MessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/MessageContext.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/MessageIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/MessageIdentity.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/MessageResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/MessageResponse.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/MessageTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/MessageTimeoutException.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/MessageType.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/MessageUserIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/MessageUserIdentity.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/RichMessages/At.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/RichMessages/At.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/RichMessages/FileImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/RichMessages/FileImage.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/RichMessages/IRichMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/RichMessages/IRichMessage.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/RichMessages/LinkImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/RichMessages/LinkImage.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/RichMessages/MemoryImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/RichMessages/MemoryImage.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/RichMessages/Reply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/RichMessages/Reply.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/RichMessages/RichMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/RichMessages/RichMessage.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/RichMessages/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/RichMessages/Text.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/RichMessages/UriText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/RichMessages/UriText.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Messaging/RichMessages/Voice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Messaging/RichMessages/Voice.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/MilkiBotFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/MilkiBotFramework.csproj -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Attributes/ArgumentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Attributes/ArgumentAttribute.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Attributes/CommandHandlerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Attributes/CommandHandlerAttribute.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Attributes/OptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Attributes/OptionAttribute.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Attributes/ParameterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Attributes/ParameterAttribute.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Attributes/PluginIdentifierAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Attributes/PluginIdentifierAttribute.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Attributes/PluginLifetimeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Attributes/PluginLifetimeAttribute.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Attributes/RegexCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Attributes/RegexCommandAttribute.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Attributes/RegexCommandHandlerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Attributes/RegexCommandHandlerAttribute.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/BasicPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/BasicPlugin.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/BindingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/BindingException.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/BindingFailureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/BindingFailureType.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/BindingSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/BindingSource.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/CommandInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/CommandInjector.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/CommandLine/CommandLineAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/CommandLine/CommandLineAnalyzer.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/CommandLine/CommandLineAuthority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/CommandLine/CommandLineAuthority.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/CommandLine/CommandLineException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/CommandLine/CommandLineException.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/CommandLine/CommandLineResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/CommandLine/CommandLineResult.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/CommandLine/ICommandLineAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/CommandLine/ICommandLineAnalyzer.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/CommandLine/StreamCommandLineAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/CommandLine/StreamCommandLineAnalyzer.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Configuration/CommentGatheringTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Configuration/CommentGatheringTypeInspector.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Configuration/CommentsObjectDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Configuration/CommentsObjectDescriptor.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Configuration/CommentsObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Configuration/CommentsObjectGraphVisitor.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Configuration/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Configuration/Configuration.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Configuration/ConfigurationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Configuration/ConfigurationBase.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Configuration/ConfigurationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Configuration/ConfigurationFactory.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Configuration/DateTimeOffsetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Configuration/DateTimeOffsetConverter.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Configuration/IConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Configuration/IConfiguration.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Configuration/MessageIdentityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Configuration/MessageIdentityConverter.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Configuration/YamlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Configuration/YamlConverter.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Database/PluginDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Database/PluginDbContext.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/IMessagePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/IMessagePlugin.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/LegacyPluginExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/LegacyPluginExtensions.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Loading/AssemblyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Loading/AssemblyContext.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Loading/CommandInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Loading/CommandInfo.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Loading/CommandParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Loading/CommandParameterInfo.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Loading/CommandReturnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Loading/CommandReturnType.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Loading/DefaultParameterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Loading/DefaultParameterConverter.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Loading/IParameterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Loading/IParameterConverter.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Loading/LoaderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Loading/LoaderContext.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Loading/ModelBindingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Loading/ModelBindingInfo.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/Loading/PluginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/Loading/PluginInfo.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/PluginBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/PluginBase.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/PluginLifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/PluginLifetime.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/PluginManager.Initialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/PluginManager.Initialization.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/PluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/PluginManager.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/PluginMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/PluginMetadata.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/PluginType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/PluginType.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Plugining/ServicePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Plugining/ServicePlugin.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/StaticTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/StaticTypes.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Tasking/BotTaskScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Tasking/BotTaskScheduler.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Tasking/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Tasking/DateTimeExtensions.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Tasking/TaskContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Tasking/TaskContext.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Tasking/TaskExecutionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Tasking/TaskExecutionHandler.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Tasking/TaskInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Tasking/TaskInstance.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Tasking/TaskOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Tasking/TaskOption.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Tasking/TaskOptionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Tasking/TaskOptionBuilder.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Tasking/TimestampOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Tasking/TimestampOffset.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Tasking/Trigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Tasking/Trigger.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Tasking/TriggerTimestampUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Tasking/TriggerTimestampUnit.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Utils/AssemblyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Utils/AssemblyHelper.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Utils/AsyncLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Utils/AsyncLock.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Utils/HttpEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Utils/HttpEncoder.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Utils/HttpHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Utils/HttpHelperExtensions.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Utils/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Utils/Utilities.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Utils/ValueListBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Utils/ValueListBuilder.cs -------------------------------------------------------------------------------- /src/MilkiBotFramework/Utils/WaitHandleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/MilkiBotFramework/Utils/WaitHandleExtensions.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/BotBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/BotBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/GoCqApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/GoCqApi.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/GoCqApiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/GoCqApiException.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/GoCqClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/GoCqClient.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/GoCqKestrelConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/GoCqKestrelConnector.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/GoCqServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/GoCqServer.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/GoCqWebsocketHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/GoCqWebsocketHelper.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/IGoCqConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/IGoCqConnector.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/FriendAddRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/FriendAddRequest.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/GoCqRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/GoCqRequest.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/GroupAddRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/GroupAddRequest.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/GroupMsgResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/GroupMsgResponse.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/PrivateMsgResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/PrivateMsgResponse.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/SendDiscussMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/SendDiscussMsg.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/SendGroupMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/SendGroupMsg.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/SendPrivateMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/RequestModel/SendPrivateMsg.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/ChannelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/ChannelType.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/FriendInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/FriendInfo.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/GetMsgResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/GetMsgResponse.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/GoCqApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/GoCqApiResponse.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/GroupInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/GroupInfo.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/GroupMemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/GroupMemberInfo.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/Guild/GetGuildMembersResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/Guild/GetGuildMembersResponse.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/Guild/GuildBrief.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/Guild/GuildBrief.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/Guild/GuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/Guild/GuildInfo.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/Guild/GuildMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/Guild/GuildMember.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/Guild/SlowMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/Guild/SlowMode.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/Guild/SubChannelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/Guild/SubChannelInfo.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/LoginInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/LoginInfo.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/MsgResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/MsgResponse.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/StrangerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Connecting/ResponseModel/StrangerInfo.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/ContactsManaging/GoCqContactsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/ContactsManaging/GoCqContactsManager.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Dispatching/GoCqDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Dispatching/GoCqDispatcher.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/GoCqBotOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/GoCqBotOptions.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/GoCqConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/GoCqConnection.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/GoCqParameterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/GoCqParameterConverter.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Internal/Int64ToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Internal/Int64ToStringConverter.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Internal/UnixDateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Internal/UnixDateTimeConverter.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQAt.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQCodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQCodeHelper.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQDice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQDice.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQFace.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQImage.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQImageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQImageType.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQMusic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQMusic.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQRecord.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQReply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQReply.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQRps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQRps.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQShare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQShare.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQUnknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/CqCodes/CQUnknown.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/EventBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/EventBase.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/FriendAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/FriendAdd.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/FriendRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/FriendRequest.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/GroupAdminChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/GroupAdminChange.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/GroupFileUpload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/GroupFileUpload.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/GroupInvite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/GroupInvite.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/GroupMemberChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/GroupMemberChange.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/GroupMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/GroupMessage.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/GuildMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/GuildMessage.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/IDetailedSenderMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/IDetailedSenderMessage.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/MessageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/MessageBase.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/PrivateMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/PrivateMessage.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/SenderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/Events/SenderBase.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/GoCqMessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/GoCqMessageContext.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/GoCqMessageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/GoCqMessageConverter.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/RangeComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Messaging/RangeComparer.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/MilkiBotFramework.Platforms.GoCqHttp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/MilkiBotFramework.Platforms.GoCqHttp.csproj -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Utils/EncodingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Utils/EncodingHelper.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Utils/RegexHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.GoCqHttp/Utils/RegexHelper.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/BotBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/BotBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/Connecting/Intents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/Connecting/Intents.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/Connecting/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/Connecting/OpCode.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/Connecting/QApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/Connecting/QApi.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/Connecting/QApiConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/Connecting/QApiConnector.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/Connecting/QApiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/Connecting/QApiException.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/Connecting/QApiHttpMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/Connecting/QApiHttpMiddleware.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/Connecting/QApiWsConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/Connecting/QApiWsConnector.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/ContactsManaging/QContactsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/ContactsManaging/QContactsManager.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/Dispatching/QDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/Dispatching/QDispatcher.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/Messaging/QMessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/Messaging/QMessageContext.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/Messaging/QMessageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/Messaging/QMessageConverter.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/Messaging/RichMessages/ImagePlaceholder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/Messaging/RichMessages/ImagePlaceholder.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/MilkiBotFramework.Platforms.QQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/MilkiBotFramework.Platforms.QQ.csproj -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/MinIOOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/MinIOOptions.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/ObjectStore/IObjectStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/ObjectStore/IObjectStorageProvider.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/ObjectStore/MinIOProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/ObjectStore/MinIOProvider.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/ObjectStore/QiniuProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/ObjectStore/QiniuProvider.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/OssOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/OssOptions.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/QBotBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/QBotBuilder.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/QConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/QConnection.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/QParameterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/QParameterConverter.cs -------------------------------------------------------------------------------- /src/Platforms/MilkiBotFramework.Platforms.QQ/QQBotOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Platforms/MilkiBotFramework.Platforms.QQ/QQBotOptions.cs -------------------------------------------------------------------------------- /src/Samples/DemoBot/DemoBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Samples/DemoBot/DemoBot.csproj -------------------------------------------------------------------------------- /src/Samples/DemoBot/DemoPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Samples/DemoBot/DemoPlugin.cs -------------------------------------------------------------------------------- /src/Samples/DemoBot/DemoPlugin2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Samples/DemoBot/DemoPlugin2.cs -------------------------------------------------------------------------------- /src/Samples/DemoBot/DemoServicePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Samples/DemoBot/DemoServicePlugin.cs -------------------------------------------------------------------------------- /src/Samples/DemoBot/MyPluginDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Samples/DemoBot/MyPluginDbContext.cs -------------------------------------------------------------------------------- /src/Samples/DemoBot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Samples/DemoBot/Program.cs -------------------------------------------------------------------------------- /src/Samples/DemoBot/TestConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Samples/DemoBot/TestConfiguration.cs -------------------------------------------------------------------------------- /src/Samples/DemoBot/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Samples/DemoBot/WeatherForecast.cs -------------------------------------------------------------------------------- /src/Samples/DemoBot/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Samples/DemoBot/WeatherForecastController.cs -------------------------------------------------------------------------------- /src/Samples/DemoPlugin/AnotherServicePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Samples/DemoPlugin/AnotherServicePlugin.cs -------------------------------------------------------------------------------- /src/Samples/DemoPlugin/DemoPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Samples/DemoPlugin/DemoPlugin.csproj -------------------------------------------------------------------------------- /src/Tests/AvaHeadlessTest/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Tests/AvaHeadlessTest/App.axaml -------------------------------------------------------------------------------- /src/Tests/AvaHeadlessTest/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Tests/AvaHeadlessTest/App.axaml.cs -------------------------------------------------------------------------------- /src/Tests/AvaHeadlessTest/Assets/Fonts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Tests/AvaHeadlessTest/Assets/Fonts/readme.md -------------------------------------------------------------------------------- /src/Tests/AvaHeadlessTest/AvaHeadlessTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Tests/AvaHeadlessTest/AvaHeadlessTest.csproj -------------------------------------------------------------------------------- /src/Tests/AvaHeadlessTest/AvaTestControl.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Tests/AvaHeadlessTest/AvaTestControl.axaml -------------------------------------------------------------------------------- /src/Tests/AvaHeadlessTest/AvaTestControl.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Tests/AvaHeadlessTest/AvaTestControl.axaml.cs -------------------------------------------------------------------------------- /src/Tests/AvaHeadlessTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Tests/AvaHeadlessTest/Program.cs -------------------------------------------------------------------------------- /src/Tests/AvaHeadlessTest/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Tests/AvaHeadlessTest/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Tests/MinioTest/MinioTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Tests/MinioTest/MinioTest.csproj -------------------------------------------------------------------------------- /src/Tests/MinioTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Tests/MinioTest/Program.cs -------------------------------------------------------------------------------- /src/Tests/UnitTests/CommandLineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Tests/UnitTests/CommandLineTests.cs -------------------------------------------------------------------------------- /src/Tests/UnitTests/UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Tests/UnitTests/UnitTests.csproj -------------------------------------------------------------------------------- /src/Tests/UnitTests/passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Milkitic/MilkiBotFramework/HEAD/src/Tests/UnitTests/passwords.txt --------------------------------------------------------------------------------