├── .gitattributes ├── .gitignore ├── BigBlueButtonApi.Tests ├── BigBlueButtonApi.Tests.csproj ├── BigBlueButtonTests.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── BigBlueButtonApi.sln ├── BigBlueButtonApi ├── BigBlueButton.cs ├── BigBlueButtonApi.csproj ├── BigBlueButtonApi.nuspec ├── IBigBlueButton.cs ├── Properties │ └── AssemblyInfo.cs ├── QueryStringBuilder.cs ├── Responses │ ├── Attendee.cs │ ├── Attendees.cs │ ├── CreateResponse.cs │ ├── GetMeetingsResponse.cs │ ├── GetRecordingsResponse.cs │ ├── IsMeetingRunningResponse.cs │ ├── JwtTokenResult.cs │ ├── Meeting.cs │ ├── MeetingCreateResponse.cs │ ├── MeetingInfoResponse.cs │ └── Response.cs ├── SHA1.cs ├── XmlSerializeHelper.cs └── packages.config ├── README.md ├── SetVersion.ps1 └── appveyor.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/.gitignore -------------------------------------------------------------------------------- /BigBlueButtonApi.Tests/BigBlueButtonApi.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi.Tests/BigBlueButtonApi.Tests.csproj -------------------------------------------------------------------------------- /BigBlueButtonApi.Tests/BigBlueButtonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi.Tests/BigBlueButtonTests.cs -------------------------------------------------------------------------------- /BigBlueButtonApi.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BigBlueButtonApi.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi.Tests/packages.config -------------------------------------------------------------------------------- /BigBlueButtonApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi.sln -------------------------------------------------------------------------------- /BigBlueButtonApi/BigBlueButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/BigBlueButton.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/BigBlueButtonApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/BigBlueButtonApi.csproj -------------------------------------------------------------------------------- /BigBlueButtonApi/BigBlueButtonApi.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/BigBlueButtonApi.nuspec -------------------------------------------------------------------------------- /BigBlueButtonApi/IBigBlueButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/IBigBlueButton.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/QueryStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/QueryStringBuilder.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/Responses/Attendee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/Responses/Attendee.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/Responses/Attendees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/Responses/Attendees.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/Responses/CreateResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/Responses/CreateResponse.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/Responses/GetMeetingsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/Responses/GetMeetingsResponse.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/Responses/GetRecordingsResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/Responses/GetRecordingsResponse.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/Responses/IsMeetingRunningResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/Responses/IsMeetingRunningResponse.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/Responses/JwtTokenResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/Responses/JwtTokenResult.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/Responses/Meeting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/Responses/Meeting.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/Responses/MeetingCreateResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/Responses/MeetingCreateResponse.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/Responses/MeetingInfoResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/Responses/MeetingInfoResponse.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/Responses/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/Responses/Response.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/SHA1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/SHA1.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/XmlSerializeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/XmlSerializeHelper.cs -------------------------------------------------------------------------------- /BigBlueButtonApi/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/BigBlueButtonApi/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/README.md -------------------------------------------------------------------------------- /SetVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/SetVersion.ps1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knight1988/BigBlueButtonApi/HEAD/appveyor.yml --------------------------------------------------------------------------------