├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── StreamingClient.Base ├── Model │ └── OAuth │ │ ├── OAuthShortCodeModel.cs │ │ └── OAuthTokenModel.cs ├── Services │ └── OAuthRestServiceBase.cs ├── StreamingClient.Base.csproj ├── StreamingClient.Base.xml ├── Util │ ├── DateTimeOffsetExtensions.cs │ ├── DictionaryExtensions.cs │ ├── EnumHelper.cs │ ├── HttpRateLimitedRestRequestException.cs │ ├── HttpResponseMessageExtensions.cs │ ├── HttpRestRequestException.cs │ ├── JArrayExtensions.cs │ ├── JSONSerializerHelper.cs │ ├── Logger.cs │ ├── NameAttribute.cs │ ├── StringEnumNameConverter.cs │ ├── StringExtensions.cs │ └── Validator.cs └── Web │ ├── AdvancedHttpClient.cs │ ├── ClientWebSocketBase.cs │ ├── LocalHttpListenerServer.cs │ ├── LocalOAuthHttpListenerServer.cs │ └── WebSocketBase.cs ├── Trovo ├── Samples │ └── Trovo.ChatSample.Console │ │ ├── Program.cs │ │ └── Trovo.ChatSample.Console.csproj ├── Trovo.Base.UnitTests │ ├── ChannelsServiceUnitTests.cs │ ├── Trovo.Base.UnitTests.csproj │ ├── UnitTestBase.cs │ └── UsersServiceUnitTests.cs └── Trovo.Base │ ├── Clients │ └── ChatClient.cs │ ├── Models │ ├── Category │ │ └── CategoryModel.cs │ ├── Channels │ │ ├── ChannelFollowerModel.cs │ │ ├── ChannelModel.cs │ │ ├── ChannelSocialLinkModel.cs │ │ ├── ChannelSubscriberModel.cs │ │ ├── PrivateChannelModel.cs │ │ └── TopChannelModel.cs │ ├── Chat │ │ ├── ChatEmoteModel.cs │ │ ├── ChatMessageModel.cs │ │ ├── ChatPacketModel.cs │ │ └── ChatViewersModel.cs │ ├── PageDataResponseModel.cs │ └── Users │ │ ├── PrivateUserModel.cs │ │ └── UserModel.cs │ ├── Services │ ├── CategoryService.cs │ ├── ChannelsService.cs │ ├── ChatService.cs │ ├── OAuthService.cs │ ├── TrovoServiceBase.cs │ └── UsersService.cs │ ├── Trovo.Base.csproj │ └── TrovoConnection.cs ├── Twitch ├── Samples │ ├── Twitch.ChatSample.Console │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Twitch.ChatSample.Console.csproj │ │ └── packages.config │ ├── Twitch.ExtensionSample.API │ │ ├── Controllers │ │ │ └── SampleController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── Twitch.ExtensionSample.API.csproj │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── Twitch.PubSubSample.Console │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Twitch.PubSubSample.Console.csproj │ │ └── packages.config │ ├── Twitch.WebhooksSample.API │ │ ├── Controllers │ │ │ └── SampleController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── Twitch.WebhooksSample.API.csproj │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── packages │ │ ├── Google.Apis.1.48.0 │ │ ├── .signature.p7s │ │ ├── LICENSE │ │ ├── NuGetIcon.png │ │ └── lib │ │ │ ├── net45 │ │ │ ├── Google.Apis.PlatformServices.dll │ │ │ ├── Google.Apis.dll │ │ │ └── Google.Apis.xml │ │ │ ├── netstandard1.3 │ │ │ ├── Google.Apis.dll │ │ │ └── Google.Apis.xml │ │ │ └── netstandard2.0 │ │ │ ├── Google.Apis.dll │ │ │ └── Google.Apis.xml │ │ ├── Google.Apis.Auth.1.48.0 │ │ ├── .signature.p7s │ │ ├── LICENSE │ │ ├── NuGetIcon.png │ │ └── lib │ │ │ ├── net45 │ │ │ ├── Google.Apis.Auth.PlatformServices.dll │ │ │ ├── Google.Apis.Auth.dll │ │ │ └── Google.Apis.Auth.xml │ │ │ ├── netstandard1.3 │ │ │ ├── Google.Apis.Auth.PlatformServices.dll │ │ │ ├── Google.Apis.Auth.dll │ │ │ └── Google.Apis.Auth.xml │ │ │ └── netstandard2.0 │ │ │ ├── Google.Apis.Auth.PlatformServices.dll │ │ │ ├── Google.Apis.Auth.dll │ │ │ └── Google.Apis.Auth.xml │ │ ├── Google.Apis.Core.1.48.0 │ │ ├── .signature.p7s │ │ ├── LICENSE │ │ ├── NuGetIcon.png │ │ └── lib │ │ │ ├── net45 │ │ │ ├── Google.Apis.Core.dll │ │ │ └── Google.Apis.Core.xml │ │ │ ├── netstandard1.3 │ │ │ ├── Google.Apis.Core.dll │ │ │ └── Google.Apis.Core.xml │ │ │ └── netstandard2.0 │ │ │ ├── Google.Apis.Core.dll │ │ │ └── Google.Apis.Core.xml │ │ ├── Google.Apis.YouTube.v3.1.47.0.2008 │ │ ├── .signature.p7s │ │ ├── LICENSE │ │ └── lib │ │ │ ├── net40 │ │ │ ├── Google.Apis.YouTube.v3.dll │ │ │ └── Google.Apis.YouTube.v3.xml │ │ │ ├── net45 │ │ │ ├── Google.Apis.YouTube.v3.dll │ │ │ └── Google.Apis.YouTube.v3.xml │ │ │ ├── netstandard1.0 │ │ │ ├── Google.Apis.YouTube.v3.dll │ │ │ └── Google.Apis.YouTube.v3.xml │ │ │ ├── netstandard1.3 │ │ │ ├── Google.Apis.YouTube.v3.dll │ │ │ └── Google.Apis.YouTube.v3.xml │ │ │ └── netstandard2.0 │ │ │ ├── Google.Apis.YouTube.v3.dll │ │ │ └── Google.Apis.YouTube.v3.xml │ │ ├── Google.Apis.YouTubePartner.v1.1.35.1.1334 │ │ ├── .signature.p7s │ │ └── lib │ │ │ ├── net40 │ │ │ ├── Google.Apis.YouTubePartner.v1.dll │ │ │ └── Google.Apis.YouTubePartner.v1.xml │ │ │ ├── net45 │ │ │ ├── Google.Apis.YouTubePartner.v1.dll │ │ │ └── Google.Apis.YouTubePartner.v1.xml │ │ │ ├── netstandard1.0 │ │ │ ├── Google.Apis.YouTubePartner.v1.dll │ │ │ └── Google.Apis.YouTubePartner.v1.xml │ │ │ ├── netstandard1.3 │ │ │ ├── Google.Apis.YouTubePartner.v1.dll │ │ │ └── Google.Apis.YouTubePartner.v1.xml │ │ │ └── netstandard2.0 │ │ │ ├── Google.Apis.YouTubePartner.v1.dll │ │ │ └── Google.Apis.YouTubePartner.v1.xml │ │ └── Newtonsoft.Json.12.0.3 │ │ ├── .signature.p7s │ │ ├── LICENSE.md │ │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.3 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard2.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── packageIcon.png ├── Twitch.Base.UnitTests │ ├── NewAPI │ │ ├── AdsServiceUnitTests.cs │ │ ├── BitsServiceUnitTests.cs │ │ ├── ChannelPointsServiceUnitTests.cs │ │ ├── ChannelsServiceUnitTests.cs │ │ ├── ChatServiceUnitTests.cs │ │ ├── ClipsServiceUnitTests.cs │ │ ├── EventSubServiceUnitTests.cs │ │ ├── GamesServiceUnitTests.cs │ │ ├── ScheduleServiceUnitTests.cs │ │ ├── StreamsServiceUnitTests.cs │ │ ├── SubscriptionsServiceUnitTests.cs │ │ ├── TeamsServiceUnitTests.cs │ │ └── UsersServiceUnitTests.cs │ ├── Twitch.Base.UnitTests.csproj │ ├── TwitchConnectionUnitTests.cs │ └── UnitTestBase.cs ├── Twitch.Base │ ├── Clients │ │ ├── ChatClient.cs │ │ ├── EventSubClient.cs │ │ ├── FDGTChatClient.cs │ │ └── PubSubClient.cs │ ├── Models │ │ ├── Clients │ │ │ ├── Chat │ │ │ │ ├── ChatClearChatPacketModel.cs │ │ │ │ ├── ChatClearMessagePacketModel.cs │ │ │ │ ├── ChatGlobalUserStatePacketModel.cs │ │ │ │ ├── ChatMessagePacketModel.cs │ │ │ │ ├── ChatNoticePacketModel.cs │ │ │ │ ├── ChatPacketModelBase.cs │ │ │ │ ├── ChatRawPacketModel.cs │ │ │ │ ├── ChatRoomStatePacketModel.cs │ │ │ │ ├── ChatUserJoinPacketModel.cs │ │ │ │ ├── ChatUserLeavePacketModel.cs │ │ │ │ ├── ChatUserNoticePacketModel.cs │ │ │ │ ├── ChatUserPacketModelBase.cs │ │ │ │ ├── ChatUserStatePacketModel.cs │ │ │ │ ├── ChatUsersListPacketModel.cs │ │ │ │ └── ChatWhisperMessagePacketModel.cs │ │ │ ├── EventSub │ │ │ │ ├── EventSubMessageBase.cs │ │ │ │ ├── KeepAliveMessage.cs │ │ │ │ ├── MessageMetadata.cs │ │ │ │ ├── MessageType.cs │ │ │ │ ├── NotificationMessage.cs │ │ │ │ ├── NotificationMessagePayload.cs │ │ │ │ ├── ReconnectMessage.cs │ │ │ │ ├── ReconnectMessagePayload.cs │ │ │ │ ├── RevocationMessage.cs │ │ │ │ ├── RevocationMessagePayload.cs │ │ │ │ ├── Session.cs │ │ │ │ ├── Subscription.cs │ │ │ │ ├── Transport.cs │ │ │ │ ├── WelcomeMessage.cs │ │ │ │ └── WelcomeMessagePayload.cs │ │ │ └── PubSub │ │ │ │ ├── Messages │ │ │ │ ├── PubSubBitBadgeEventModel.cs │ │ │ │ ├── PubSubBitsEventV1Model.cs │ │ │ │ ├── PubSubBitsEventV2Model.cs │ │ │ │ ├── PubSubChannelPointsRedeemedEventModel.cs │ │ │ │ ├── PubSubSubscriptionsEventModel.cs │ │ │ │ ├── PubSubSubscriptionsGiftEventModel.cs │ │ │ │ └── PubSubWhisperEventModel.cs │ │ │ │ ├── PubSubListenTopicModel.cs │ │ │ │ ├── PubSubMessagePacketModel.cs │ │ │ │ ├── PubSubPacketModel.cs │ │ │ │ └── PubSubResponsePacketModel.cs │ │ └── NewAPI │ │ │ ├── Ads │ │ │ ├── AdResponseModel.cs │ │ │ ├── AdScheduleModel.cs │ │ │ └── AdSnoozeResponseModel.cs │ │ │ ├── Bits │ │ │ ├── BitsCheermoteModel.cs │ │ │ └── BitsLeaderboardModel.cs │ │ │ ├── ChannelPoints │ │ │ ├── CustomChannelPointRewardModel.cs │ │ │ └── CustomChannelPointRewardRedemptionModel.cs │ │ │ ├── Channels │ │ │ ├── ChannelBannedEventModel.cs │ │ │ ├── ChannelBannedUserModel.cs │ │ │ ├── ChannelContentClassificationLabelModel.cs │ │ │ ├── ChannelEditorUserModel.cs │ │ │ ├── ChannelFollowedModel.cs │ │ │ ├── ChannelFollowerModel.cs │ │ │ ├── ChannelHypeTrainModel.cs │ │ │ ├── ChannelInformationModel.cs │ │ │ ├── ChannelModeratorEventModel.cs │ │ │ └── ChannelModeratorUserModel.cs │ │ │ ├── Charity │ │ │ ├── CharityCampaignAmountModel.cs │ │ │ ├── CharityCampaignDonationModel.cs │ │ │ └── CharityCampaignModel.cs │ │ │ ├── Chat │ │ │ ├── AnnouncementModel.cs │ │ │ ├── ChatBadgeModel.cs │ │ │ ├── ChatEmoteModel.cs │ │ │ ├── ChatSettingsModel.cs │ │ │ └── ChatterModel.cs │ │ │ ├── Clips │ │ │ ├── ClipCreationModel.cs │ │ │ └── ClipModel.cs │ │ │ ├── EventSub │ │ │ ├── EventSubSubscriptionChallengeModel.cs │ │ │ ├── EventSubSubscriptionModel.cs │ │ │ ├── EventSubSubscriptionNotificationModel.cs │ │ │ └── EventSubTransportModel.cs │ │ │ ├── Games │ │ │ └── GameModel.cs │ │ │ ├── NewTwitchAPIDataRestResult.cs │ │ │ ├── NewTwitchAPISingleDataRestResult.cs │ │ │ ├── Polls │ │ │ ├── PollChoiceModel.cs │ │ │ └── PollModel.cs │ │ │ ├── Predictions │ │ │ ├── PredictionModel.cs │ │ │ ├── PredictionOutcomeModel.cs │ │ │ └── PredictionOutcomeTopPredictorModel.cs │ │ │ ├── Schedule │ │ │ ├── ScheduleModel.cs │ │ │ ├── ScheduleSegmentCategoryModel.cs │ │ │ ├── ScheduleSegmentModel.cs │ │ │ └── ScheduleVacationModel.cs │ │ │ ├── Streams │ │ │ ├── StreamMarkerModel.cs │ │ │ └── StreamModel.cs │ │ │ ├── Subscriptions │ │ │ └── SubscriptionModel.cs │ │ │ ├── Teams │ │ │ ├── TeamMemberModel.cs │ │ │ └── TeamModel.cs │ │ │ ├── Users │ │ │ └── UserModel.cs │ │ │ └── Webhook │ │ │ ├── WebhookSubscriptionModel.cs │ │ │ └── WebhookSubscriptionRegistrationModel.cs │ ├── Services │ │ ├── NewAPI │ │ │ ├── AdsService.cs │ │ │ ├── BitsService.cs │ │ │ ├── ChannelPointsService.cs │ │ │ ├── ChannelsService.cs │ │ │ ├── CharityService.cs │ │ │ ├── ChatService.cs │ │ │ ├── ClipsService.cs │ │ │ ├── EventSubService.cs │ │ │ ├── GamesService.cs │ │ │ ├── NewTwitchAPIServiceBase.cs │ │ │ ├── NewTwitchAPIServices.cs │ │ │ ├── PollsService.cs │ │ │ ├── PredictionsService.cs │ │ │ ├── ScheduleService.cs │ │ │ ├── StreamsService.cs │ │ │ ├── SubscriptionsService.cs │ │ │ ├── TeamsService.cs │ │ │ ├── UsersService.cs │ │ │ └── WebhooksService.cs │ │ ├── OAuthService.cs │ │ └── TwitchServiceBase.cs │ ├── Twitch - Backup.Base.csproj │ ├── Twitch.Base.csproj │ └── TwitchConnection.cs ├── Twitch.Extensions.Base │ ├── Models │ │ ├── BroadcastBodyModel.cs │ │ ├── ConfigurationModel.cs │ │ ├── ExtensionChatMessageModel.cs │ │ └── TwitchJWTTokenPayloadModel.cs │ ├── Services │ │ └── TwitchExtensionService.cs │ └── Twitch.Extensions.Base.csproj └── Twitch.Webhooks.Base │ ├── Models │ ├── WebhookResultModel.cs │ └── WebhookSubscriptionVerificationModel.cs │ ├── Services │ └── TwitchWebhookService.cs │ └── Twitch.Webhooks.Base.csproj ├── YouTube ├── Samples │ ├── YouTube.ChatSample.Console │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── YouTube.ChatSample.Console.csproj │ │ └── packages.config │ └── YouTube.VideoUploadSample.Console │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── YouTube.VideoUploadSample.Console.csproj │ │ ├── packages.config │ │ ├── thumbnail.jpg │ │ └── video.mp4 ├── YouTube.Base.UnitTests │ ├── ChannelsServiceUnitTests.cs │ ├── CommentsServiceUnitTests.cs │ ├── LiveBroadcastsServiceUnitTests.cs │ ├── PlaylistsServiceUnitTests.cs │ ├── SubscriptionsServiceUnitTests.cs │ ├── UnitTestBase.cs │ ├── VideosServiceUnitTests.cs │ ├── YouTube.Base.UnitTests.csproj │ └── YouTubeConnectionUnitTests.cs └── YouTube.Base │ ├── Clients │ └── ChatClient.cs │ ├── Model │ ├── LiveChatMessagesResultModel.cs │ ├── YouTubeModelBase.cs │ └── YouTubePagedResult.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ ├── ChannelsService.cs │ ├── CommentsService.cs │ ├── LiveBroadcastsService.cs │ ├── LiveChatService.cs │ ├── MembershipService.cs │ ├── OAuthService.cs │ ├── PlaylistsService.cs │ ├── SubscriptionsService.cs │ ├── VideosService.cs │ └── YouTubeServiceBase.cs │ ├── YouTube.Base.csproj │ └── YouTubeConnection.cs ├── streaming-client-csharp.sln └── streaming-client-samples-csharp.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/README.md -------------------------------------------------------------------------------- /StreamingClient.Base/Model/OAuth/OAuthShortCodeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Model/OAuth/OAuthShortCodeModel.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Model/OAuth/OAuthTokenModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Model/OAuth/OAuthTokenModel.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Services/OAuthRestServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Services/OAuthRestServiceBase.cs -------------------------------------------------------------------------------- /StreamingClient.Base/StreamingClient.Base.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/StreamingClient.Base.csproj -------------------------------------------------------------------------------- /StreamingClient.Base/StreamingClient.Base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/StreamingClient.Base.xml -------------------------------------------------------------------------------- /StreamingClient.Base/Util/DateTimeOffsetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Util/DateTimeOffsetExtensions.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Util/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Util/DictionaryExtensions.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Util/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Util/EnumHelper.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Util/HttpRateLimitedRestRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Util/HttpRateLimitedRestRequestException.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Util/HttpResponseMessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Util/HttpResponseMessageExtensions.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Util/HttpRestRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Util/HttpRestRequestException.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Util/JArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Util/JArrayExtensions.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Util/JSONSerializerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Util/JSONSerializerHelper.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Util/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Util/Logger.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Util/NameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Util/NameAttribute.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Util/StringEnumNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Util/StringEnumNameConverter.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Util/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Util/StringExtensions.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Util/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Util/Validator.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Web/AdvancedHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Web/AdvancedHttpClient.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Web/ClientWebSocketBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Web/ClientWebSocketBase.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Web/LocalHttpListenerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Web/LocalHttpListenerServer.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Web/LocalOAuthHttpListenerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Web/LocalOAuthHttpListenerServer.cs -------------------------------------------------------------------------------- /StreamingClient.Base/Web/WebSocketBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/StreamingClient.Base/Web/WebSocketBase.cs -------------------------------------------------------------------------------- /Trovo/Samples/Trovo.ChatSample.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Samples/Trovo.ChatSample.Console/Program.cs -------------------------------------------------------------------------------- /Trovo/Samples/Trovo.ChatSample.Console/Trovo.ChatSample.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Samples/Trovo.ChatSample.Console/Trovo.ChatSample.Console.csproj -------------------------------------------------------------------------------- /Trovo/Trovo.Base.UnitTests/ChannelsServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base.UnitTests/ChannelsServiceUnitTests.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base.UnitTests/Trovo.Base.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base.UnitTests/Trovo.Base.UnitTests.csproj -------------------------------------------------------------------------------- /Trovo/Trovo.Base.UnitTests/UnitTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base.UnitTests/UnitTestBase.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base.UnitTests/UsersServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base.UnitTests/UsersServiceUnitTests.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Clients/ChatClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Clients/ChatClient.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Models/Category/CategoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Models/Category/CategoryModel.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Models/Channels/ChannelFollowerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Models/Channels/ChannelFollowerModel.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Models/Channels/ChannelModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Models/Channels/ChannelModel.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Models/Channels/ChannelSocialLinkModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Models/Channels/ChannelSocialLinkModel.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Models/Channels/ChannelSubscriberModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Models/Channels/ChannelSubscriberModel.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Models/Channels/PrivateChannelModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Models/Channels/PrivateChannelModel.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Models/Channels/TopChannelModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Models/Channels/TopChannelModel.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Models/Chat/ChatEmoteModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Models/Chat/ChatEmoteModel.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Models/Chat/ChatMessageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Models/Chat/ChatMessageModel.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Models/Chat/ChatPacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Models/Chat/ChatPacketModel.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Models/Chat/ChatViewersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Models/Chat/ChatViewersModel.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Models/PageDataResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Models/PageDataResponseModel.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Models/Users/PrivateUserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Models/Users/PrivateUserModel.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Models/Users/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Models/Users/UserModel.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Services/CategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Services/CategoryService.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Services/ChannelsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Services/ChannelsService.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Services/ChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Services/ChatService.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Services/OAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Services/OAuthService.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Services/TrovoServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Services/TrovoServiceBase.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Services/UsersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Services/UsersService.cs -------------------------------------------------------------------------------- /Trovo/Trovo.Base/Trovo.Base.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/Trovo.Base.csproj -------------------------------------------------------------------------------- /Trovo/Trovo.Base/TrovoConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Trovo/Trovo.Base/TrovoConnection.cs -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.ChatSample.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.ChatSample.Console/App.config -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.ChatSample.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.ChatSample.Console/Program.cs -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.ChatSample.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.ChatSample.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.ChatSample.Console/Twitch.ChatSample.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.ChatSample.Console/Twitch.ChatSample.Console.csproj -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.ChatSample.Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.ChatSample.Console/packages.config -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.ExtensionSample.API/Controllers/SampleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.ExtensionSample.API/Controllers/SampleController.cs -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.ExtensionSample.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.ExtensionSample.API/Program.cs -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.ExtensionSample.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.ExtensionSample.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.ExtensionSample.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.ExtensionSample.API/Startup.cs -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.ExtensionSample.API/Twitch.ExtensionSample.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.ExtensionSample.API/Twitch.ExtensionSample.API.csproj -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.ExtensionSample.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.ExtensionSample.API/appsettings.Development.json -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.ExtensionSample.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.ExtensionSample.API/appsettings.json -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.PubSubSample.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.PubSubSample.Console/App.config -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.PubSubSample.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.PubSubSample.Console/Program.cs -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.PubSubSample.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.PubSubSample.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.PubSubSample.Console/Twitch.PubSubSample.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.PubSubSample.Console/Twitch.PubSubSample.Console.csproj -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.PubSubSample.Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.PubSubSample.Console/packages.config -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.WebhooksSample.API/Controllers/SampleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.WebhooksSample.API/Controllers/SampleController.cs -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.WebhooksSample.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.WebhooksSample.API/Program.cs -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.WebhooksSample.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.WebhooksSample.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.WebhooksSample.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.WebhooksSample.API/Startup.cs -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.WebhooksSample.API/Twitch.WebhooksSample.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.WebhooksSample.API/Twitch.WebhooksSample.API.csproj -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.WebhooksSample.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.WebhooksSample.API/appsettings.Development.json -------------------------------------------------------------------------------- /Twitch/Samples/Twitch.WebhooksSample.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/Twitch.WebhooksSample.API/appsettings.json -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.1.48.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.1.48.0/.signature.p7s -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.1.48.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.1.48.0/LICENSE -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.1.48.0/NuGetIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.1.48.0/NuGetIcon.png -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.1.48.0/lib/net45/Google.Apis.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.1.48.0/lib/net45/Google.Apis.PlatformServices.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.1.48.0/lib/net45/Google.Apis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.1.48.0/lib/net45/Google.Apis.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.1.48.0/lib/net45/Google.Apis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.1.48.0/lib/net45/Google.Apis.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.1.48.0/lib/netstandard1.3/Google.Apis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.1.48.0/lib/netstandard1.3/Google.Apis.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.1.48.0/lib/netstandard1.3/Google.Apis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.1.48.0/lib/netstandard1.3/Google.Apis.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.1.48.0/lib/netstandard2.0/Google.Apis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.1.48.0/lib/netstandard2.0/Google.Apis.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.1.48.0/lib/netstandard2.0/Google.Apis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.1.48.0/lib/netstandard2.0/Google.Apis.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Auth.1.48.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Auth.1.48.0/.signature.p7s -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Auth.1.48.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Auth.1.48.0/LICENSE -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Auth.1.48.0/NuGetIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Auth.1.48.0/NuGetIcon.png -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/net45/Google.Apis.Auth.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/net45/Google.Apis.Auth.PlatformServices.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/net45/Google.Apis.Auth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/net45/Google.Apis.Auth.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/net45/Google.Apis.Auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/net45/Google.Apis.Auth.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/netstandard1.3/Google.Apis.Auth.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/netstandard1.3/Google.Apis.Auth.PlatformServices.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/netstandard1.3/Google.Apis.Auth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/netstandard1.3/Google.Apis.Auth.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/netstandard1.3/Google.Apis.Auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/netstandard1.3/Google.Apis.Auth.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/netstandard2.0/Google.Apis.Auth.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/netstandard2.0/Google.Apis.Auth.PlatformServices.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/netstandard2.0/Google.Apis.Auth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/netstandard2.0/Google.Apis.Auth.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/netstandard2.0/Google.Apis.Auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Auth.1.48.0/lib/netstandard2.0/Google.Apis.Auth.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Core.1.48.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Core.1.48.0/.signature.p7s -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Core.1.48.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Core.1.48.0/LICENSE -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Core.1.48.0/NuGetIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Core.1.48.0/NuGetIcon.png -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Core.1.48.0/lib/net45/Google.Apis.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Core.1.48.0/lib/net45/Google.Apis.Core.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Core.1.48.0/lib/net45/Google.Apis.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Core.1.48.0/lib/net45/Google.Apis.Core.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Core.1.48.0/lib/netstandard1.3/Google.Apis.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Core.1.48.0/lib/netstandard1.3/Google.Apis.Core.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Core.1.48.0/lib/netstandard1.3/Google.Apis.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Core.1.48.0/lib/netstandard1.3/Google.Apis.Core.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Core.1.48.0/lib/netstandard2.0/Google.Apis.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Core.1.48.0/lib/netstandard2.0/Google.Apis.Core.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.Core.1.48.0/lib/netstandard2.0/Google.Apis.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.Core.1.48.0/lib/netstandard2.0/Google.Apis.Core.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/.signature.p7s -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/LICENSE -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/net40/Google.Apis.YouTube.v3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/net40/Google.Apis.YouTube.v3.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/net40/Google.Apis.YouTube.v3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/net40/Google.Apis.YouTube.v3.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/net45/Google.Apis.YouTube.v3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/net45/Google.Apis.YouTube.v3.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/net45/Google.Apis.YouTube.v3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/net45/Google.Apis.YouTube.v3.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/netstandard1.0/Google.Apis.YouTube.v3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/netstandard1.0/Google.Apis.YouTube.v3.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/netstandard1.0/Google.Apis.YouTube.v3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/netstandard1.0/Google.Apis.YouTube.v3.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/netstandard1.3/Google.Apis.YouTube.v3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/netstandard1.3/Google.Apis.YouTube.v3.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/netstandard1.3/Google.Apis.YouTube.v3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/netstandard1.3/Google.Apis.YouTube.v3.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/netstandard2.0/Google.Apis.YouTube.v3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/netstandard2.0/Google.Apis.YouTube.v3.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/netstandard2.0/Google.Apis.YouTube.v3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTube.v3.1.47.0.2008/lib/netstandard2.0/Google.Apis.YouTube.v3.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/.signature.p7s -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/net40/Google.Apis.YouTubePartner.v1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/net40/Google.Apis.YouTubePartner.v1.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/net40/Google.Apis.YouTubePartner.v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/net40/Google.Apis.YouTubePartner.v1.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/net45/Google.Apis.YouTubePartner.v1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/net45/Google.Apis.YouTubePartner.v1.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/net45/Google.Apis.YouTubePartner.v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/net45/Google.Apis.YouTubePartner.v1.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/netstandard1.0/Google.Apis.YouTubePartner.v1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/netstandard1.0/Google.Apis.YouTubePartner.v1.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/netstandard1.0/Google.Apis.YouTubePartner.v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/netstandard1.0/Google.Apis.YouTubePartner.v1.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/netstandard1.3/Google.Apis.YouTubePartner.v1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/netstandard1.3/Google.Apis.YouTubePartner.v1.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/netstandard1.3/Google.Apis.YouTubePartner.v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/netstandard1.3/Google.Apis.YouTubePartner.v1.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/netstandard2.0/Google.Apis.YouTubePartner.v1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/netstandard2.0/Google.Apis.YouTubePartner.v1.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/netstandard2.0/Google.Apis.YouTubePartner.v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Google.Apis.YouTubePartner.v1.1.35.1.1334/lib/netstandard2.0/Google.Apis.YouTubePartner.v1.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/.signature.p7s -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/LICENSE.md -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Twitch/Samples/packages/Newtonsoft.Json.12.0.3/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Samples/packages/Newtonsoft.Json.12.0.3/packageIcon.png -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/NewAPI/AdsServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/NewAPI/AdsServiceUnitTests.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/NewAPI/BitsServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/NewAPI/BitsServiceUnitTests.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/NewAPI/ChannelPointsServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/NewAPI/ChannelPointsServiceUnitTests.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/NewAPI/ChannelsServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/NewAPI/ChannelsServiceUnitTests.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/NewAPI/ChatServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/NewAPI/ChatServiceUnitTests.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/NewAPI/ClipsServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/NewAPI/ClipsServiceUnitTests.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/NewAPI/EventSubServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/NewAPI/EventSubServiceUnitTests.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/NewAPI/GamesServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/NewAPI/GamesServiceUnitTests.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/NewAPI/ScheduleServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/NewAPI/ScheduleServiceUnitTests.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/NewAPI/StreamsServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/NewAPI/StreamsServiceUnitTests.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/NewAPI/SubscriptionsServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/NewAPI/SubscriptionsServiceUnitTests.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/NewAPI/TeamsServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/NewAPI/TeamsServiceUnitTests.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/NewAPI/UsersServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/NewAPI/UsersServiceUnitTests.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/Twitch.Base.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/Twitch.Base.UnitTests.csproj -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/TwitchConnectionUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/TwitchConnectionUnitTests.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base.UnitTests/UnitTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base.UnitTests/UnitTestBase.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Clients/ChatClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Clients/ChatClient.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Clients/EventSubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Clients/EventSubClient.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Clients/FDGTChatClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Clients/FDGTChatClient.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Clients/PubSubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Clients/PubSubClient.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatClearChatPacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatClearChatPacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatClearMessagePacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatClearMessagePacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatGlobalUserStatePacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatGlobalUserStatePacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatMessagePacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatMessagePacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatNoticePacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatNoticePacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatPacketModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatPacketModelBase.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatRawPacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatRawPacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatRoomStatePacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatRoomStatePacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatUserJoinPacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatUserJoinPacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatUserLeavePacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatUserLeavePacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatUserNoticePacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatUserNoticePacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatUserPacketModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatUserPacketModelBase.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatUserStatePacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatUserStatePacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatUsersListPacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatUsersListPacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/Chat/ChatWhisperMessagePacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/Chat/ChatWhisperMessagePacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/EventSubMessageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/EventSubMessageBase.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/KeepAliveMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/KeepAliveMessage.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/MessageMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/MessageMetadata.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/MessageType.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/NotificationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/NotificationMessage.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/NotificationMessagePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/NotificationMessagePayload.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/ReconnectMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/ReconnectMessage.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/ReconnectMessagePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/ReconnectMessagePayload.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/RevocationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/RevocationMessage.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/RevocationMessagePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/RevocationMessagePayload.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/Session.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/Subscription.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/Transport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/Transport.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/WelcomeMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/WelcomeMessage.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/EventSub/WelcomeMessagePayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/EventSub/WelcomeMessagePayload.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/PubSub/Messages/PubSubBitBadgeEventModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/PubSub/Messages/PubSubBitBadgeEventModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/PubSub/Messages/PubSubBitsEventV1Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/PubSub/Messages/PubSubBitsEventV1Model.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/PubSub/Messages/PubSubBitsEventV2Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/PubSub/Messages/PubSubBitsEventV2Model.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/PubSub/Messages/PubSubChannelPointsRedeemedEventModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/PubSub/Messages/PubSubChannelPointsRedeemedEventModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/PubSub/Messages/PubSubSubscriptionsEventModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/PubSub/Messages/PubSubSubscriptionsEventModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/PubSub/Messages/PubSubSubscriptionsGiftEventModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/PubSub/Messages/PubSubSubscriptionsGiftEventModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/PubSub/Messages/PubSubWhisperEventModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/PubSub/Messages/PubSubWhisperEventModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/PubSub/PubSubListenTopicModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/PubSub/PubSubListenTopicModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/PubSub/PubSubMessagePacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/PubSub/PubSubMessagePacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/PubSub/PubSubPacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/PubSub/PubSubPacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/Clients/PubSub/PubSubResponsePacketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/Clients/PubSub/PubSubResponsePacketModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Ads/AdResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Ads/AdResponseModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Ads/AdScheduleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Ads/AdScheduleModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Ads/AdSnoozeResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Ads/AdSnoozeResponseModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Bits/BitsCheermoteModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Bits/BitsCheermoteModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Bits/BitsLeaderboardModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Bits/BitsLeaderboardModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/ChannelPoints/CustomChannelPointRewardModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/ChannelPoints/CustomChannelPointRewardModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/ChannelPoints/CustomChannelPointRewardRedemptionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/ChannelPoints/CustomChannelPointRewardRedemptionModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelBannedEventModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelBannedEventModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelBannedUserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelBannedUserModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelContentClassificationLabelModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelContentClassificationLabelModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelEditorUserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelEditorUserModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelFollowedModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelFollowedModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelFollowerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelFollowerModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelHypeTrainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelHypeTrainModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelInformationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelInformationModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelModeratorEventModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelModeratorEventModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelModeratorUserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Channels/ChannelModeratorUserModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Charity/CharityCampaignAmountModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Charity/CharityCampaignAmountModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Charity/CharityCampaignDonationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Charity/CharityCampaignDonationModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Charity/CharityCampaignModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Charity/CharityCampaignModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Chat/AnnouncementModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Chat/AnnouncementModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Chat/ChatBadgeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Chat/ChatBadgeModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Chat/ChatEmoteModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Chat/ChatEmoteModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Chat/ChatSettingsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Chat/ChatSettingsModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Chat/ChatterModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Chat/ChatterModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Clips/ClipCreationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Clips/ClipCreationModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Clips/ClipModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Clips/ClipModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/EventSub/EventSubSubscriptionChallengeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/EventSub/EventSubSubscriptionChallengeModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/EventSub/EventSubSubscriptionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/EventSub/EventSubSubscriptionModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/EventSub/EventSubSubscriptionNotificationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/EventSub/EventSubSubscriptionNotificationModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/EventSub/EventSubTransportModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/EventSub/EventSubTransportModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Games/GameModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Games/GameModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/NewTwitchAPIDataRestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/NewTwitchAPIDataRestResult.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/NewTwitchAPISingleDataRestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/NewTwitchAPISingleDataRestResult.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Polls/PollChoiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Polls/PollChoiceModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Polls/PollModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Polls/PollModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Predictions/PredictionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Predictions/PredictionModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Predictions/PredictionOutcomeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Predictions/PredictionOutcomeModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Predictions/PredictionOutcomeTopPredictorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Predictions/PredictionOutcomeTopPredictorModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Schedule/ScheduleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Schedule/ScheduleModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Schedule/ScheduleSegmentCategoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Schedule/ScheduleSegmentCategoryModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Schedule/ScheduleSegmentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Schedule/ScheduleSegmentModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Schedule/ScheduleVacationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Schedule/ScheduleVacationModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Streams/StreamMarkerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Streams/StreamMarkerModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Streams/StreamModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Streams/StreamModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Subscriptions/SubscriptionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Subscriptions/SubscriptionModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Teams/TeamMemberModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Teams/TeamMemberModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Teams/TeamModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Teams/TeamModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Users/UserModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Users/UserModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Webhook/WebhookSubscriptionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Webhook/WebhookSubscriptionModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Models/NewAPI/Webhook/WebhookSubscriptionRegistrationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Models/NewAPI/Webhook/WebhookSubscriptionRegistrationModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/AdsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/AdsService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/BitsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/BitsService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/ChannelPointsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/ChannelPointsService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/ChannelsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/ChannelsService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/CharityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/CharityService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/ChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/ChatService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/ClipsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/ClipsService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/EventSubService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/EventSubService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/GamesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/GamesService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/NewTwitchAPIServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/NewTwitchAPIServiceBase.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/NewTwitchAPIServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/NewTwitchAPIServices.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/PollsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/PollsService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/PredictionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/PredictionsService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/ScheduleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/ScheduleService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/StreamsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/StreamsService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/SubscriptionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/SubscriptionsService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/TeamsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/TeamsService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/UsersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/UsersService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/NewAPI/WebhooksService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/NewAPI/WebhooksService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/OAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/OAuthService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Services/TwitchServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Services/TwitchServiceBase.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Twitch - Backup.Base.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Twitch - Backup.Base.csproj -------------------------------------------------------------------------------- /Twitch/Twitch.Base/Twitch.Base.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/Twitch.Base.csproj -------------------------------------------------------------------------------- /Twitch/Twitch.Base/TwitchConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Base/TwitchConnection.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Extensions.Base/Models/BroadcastBodyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Extensions.Base/Models/BroadcastBodyModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Extensions.Base/Models/ConfigurationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Extensions.Base/Models/ConfigurationModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Extensions.Base/Models/ExtensionChatMessageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Extensions.Base/Models/ExtensionChatMessageModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Extensions.Base/Models/TwitchJWTTokenPayloadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Extensions.Base/Models/TwitchJWTTokenPayloadModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Extensions.Base/Services/TwitchExtensionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Extensions.Base/Services/TwitchExtensionService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Extensions.Base/Twitch.Extensions.Base.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Extensions.Base/Twitch.Extensions.Base.csproj -------------------------------------------------------------------------------- /Twitch/Twitch.Webhooks.Base/Models/WebhookResultModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Webhooks.Base/Models/WebhookResultModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Webhooks.Base/Models/WebhookSubscriptionVerificationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Webhooks.Base/Models/WebhookSubscriptionVerificationModel.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Webhooks.Base/Services/TwitchWebhookService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Webhooks.Base/Services/TwitchWebhookService.cs -------------------------------------------------------------------------------- /Twitch/Twitch.Webhooks.Base/Twitch.Webhooks.Base.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/Twitch/Twitch.Webhooks.Base/Twitch.Webhooks.Base.csproj -------------------------------------------------------------------------------- /YouTube/Samples/YouTube.ChatSample.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/Samples/YouTube.ChatSample.Console/App.config -------------------------------------------------------------------------------- /YouTube/Samples/YouTube.ChatSample.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/Samples/YouTube.ChatSample.Console/Program.cs -------------------------------------------------------------------------------- /YouTube/Samples/YouTube.ChatSample.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/Samples/YouTube.ChatSample.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /YouTube/Samples/YouTube.ChatSample.Console/YouTube.ChatSample.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/Samples/YouTube.ChatSample.Console/YouTube.ChatSample.Console.csproj -------------------------------------------------------------------------------- /YouTube/Samples/YouTube.ChatSample.Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/Samples/YouTube.ChatSample.Console/packages.config -------------------------------------------------------------------------------- /YouTube/Samples/YouTube.VideoUploadSample.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/Samples/YouTube.VideoUploadSample.Console/App.config -------------------------------------------------------------------------------- /YouTube/Samples/YouTube.VideoUploadSample.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/Samples/YouTube.VideoUploadSample.Console/Program.cs -------------------------------------------------------------------------------- /YouTube/Samples/YouTube.VideoUploadSample.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/Samples/YouTube.VideoUploadSample.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /YouTube/Samples/YouTube.VideoUploadSample.Console/YouTube.VideoUploadSample.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/Samples/YouTube.VideoUploadSample.Console/YouTube.VideoUploadSample.Console.csproj -------------------------------------------------------------------------------- /YouTube/Samples/YouTube.VideoUploadSample.Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/Samples/YouTube.VideoUploadSample.Console/packages.config -------------------------------------------------------------------------------- /YouTube/Samples/YouTube.VideoUploadSample.Console/thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/Samples/YouTube.VideoUploadSample.Console/thumbnail.jpg -------------------------------------------------------------------------------- /YouTube/Samples/YouTube.VideoUploadSample.Console/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/Samples/YouTube.VideoUploadSample.Console/video.mp4 -------------------------------------------------------------------------------- /YouTube/YouTube.Base.UnitTests/ChannelsServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base.UnitTests/ChannelsServiceUnitTests.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base.UnitTests/CommentsServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base.UnitTests/CommentsServiceUnitTests.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base.UnitTests/LiveBroadcastsServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base.UnitTests/LiveBroadcastsServiceUnitTests.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base.UnitTests/PlaylistsServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base.UnitTests/PlaylistsServiceUnitTests.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base.UnitTests/SubscriptionsServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base.UnitTests/SubscriptionsServiceUnitTests.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base.UnitTests/UnitTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base.UnitTests/UnitTestBase.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base.UnitTests/VideosServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base.UnitTests/VideosServiceUnitTests.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base.UnitTests/YouTube.Base.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base.UnitTests/YouTube.Base.UnitTests.csproj -------------------------------------------------------------------------------- /YouTube/YouTube.Base.UnitTests/YouTubeConnectionUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base.UnitTests/YouTubeConnectionUnitTests.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Clients/ChatClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Clients/ChatClient.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Model/LiveChatMessagesResultModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Model/LiveChatMessagesResultModel.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Model/YouTubeModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Model/YouTubeModelBase.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Model/YouTubePagedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Model/YouTubePagedResult.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Properties/launchSettings.json -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Services/ChannelsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Services/ChannelsService.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Services/CommentsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Services/CommentsService.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Services/LiveBroadcastsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Services/LiveBroadcastsService.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Services/LiveChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Services/LiveChatService.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Services/MembershipService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Services/MembershipService.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Services/OAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Services/OAuthService.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Services/PlaylistsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Services/PlaylistsService.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Services/SubscriptionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Services/SubscriptionsService.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Services/VideosService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Services/VideosService.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/Services/YouTubeServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/Services/YouTubeServiceBase.cs -------------------------------------------------------------------------------- /YouTube/YouTube.Base/YouTube.Base.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/YouTube.Base.csproj -------------------------------------------------------------------------------- /YouTube/YouTube.Base/YouTubeConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/YouTube/YouTube.Base/YouTubeConnection.cs -------------------------------------------------------------------------------- /streaming-client-csharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/streaming-client-csharp.sln -------------------------------------------------------------------------------- /streaming-client-samples-csharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaviorXTanren/StreamingClientLibrary/HEAD/streaming-client-samples-csharp.sln --------------------------------------------------------------------------------