├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── ParticleSDK.sln ├── ParticleSDK ├── Models │ ├── ParticleAuthenticationResponse.cs │ ├── ParticleDeviceResponse.cs │ ├── ParticleEventGroup.cs │ ├── ParticleEventHandlerData.cs │ ├── ParticleEventResponse.cs │ ├── ParticleFunctionResponse.cs │ ├── ParticleGenericResponse.cs │ └── ParticleVariableResponse.cs ├── Particle.SDK.netcorestandard.csproj ├── Particle.SDK.win81+wpa81.csproj ├── Particle.SDK.win81+wpa81.nuspec ├── ParticleCloud.cs ├── ParticleDevice.cs ├── ParticleExceptions.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── AssemblyInfo.net452.cs │ └── AssemblyInfo.win81+wpa81.cs ├── RestApi │ ├── ParticleRestApiBase.cs │ ├── ParticleRestApiSystemNetHttp.cs │ └── ParticleRestApiWindowsWebHttp.cs ├── Utils │ └── DeviceNameGenerator.cs └── packages.config └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /ParticleSDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK.sln -------------------------------------------------------------------------------- /ParticleSDK/Models/ParticleAuthenticationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Models/ParticleAuthenticationResponse.cs -------------------------------------------------------------------------------- /ParticleSDK/Models/ParticleDeviceResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Models/ParticleDeviceResponse.cs -------------------------------------------------------------------------------- /ParticleSDK/Models/ParticleEventGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Models/ParticleEventGroup.cs -------------------------------------------------------------------------------- /ParticleSDK/Models/ParticleEventHandlerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Models/ParticleEventHandlerData.cs -------------------------------------------------------------------------------- /ParticleSDK/Models/ParticleEventResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Models/ParticleEventResponse.cs -------------------------------------------------------------------------------- /ParticleSDK/Models/ParticleFunctionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Models/ParticleFunctionResponse.cs -------------------------------------------------------------------------------- /ParticleSDK/Models/ParticleGenericResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Models/ParticleGenericResponse.cs -------------------------------------------------------------------------------- /ParticleSDK/Models/ParticleVariableResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Models/ParticleVariableResponse.cs -------------------------------------------------------------------------------- /ParticleSDK/Particle.SDK.netcorestandard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Particle.SDK.netcorestandard.csproj -------------------------------------------------------------------------------- /ParticleSDK/Particle.SDK.win81+wpa81.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Particle.SDK.win81+wpa81.csproj -------------------------------------------------------------------------------- /ParticleSDK/Particle.SDK.win81+wpa81.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Particle.SDK.win81+wpa81.nuspec -------------------------------------------------------------------------------- /ParticleSDK/ParticleCloud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/ParticleCloud.cs -------------------------------------------------------------------------------- /ParticleSDK/ParticleDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/ParticleDevice.cs -------------------------------------------------------------------------------- /ParticleSDK/ParticleExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/ParticleExceptions.cs -------------------------------------------------------------------------------- /ParticleSDK/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ParticleSDK/Properties/AssemblyInfo.net452.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Properties/AssemblyInfo.net452.cs -------------------------------------------------------------------------------- /ParticleSDK/Properties/AssemblyInfo.win81+wpa81.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Properties/AssemblyInfo.win81+wpa81.cs -------------------------------------------------------------------------------- /ParticleSDK/RestApi/ParticleRestApiBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/RestApi/ParticleRestApiBase.cs -------------------------------------------------------------------------------- /ParticleSDK/RestApi/ParticleRestApiSystemNetHttp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/RestApi/ParticleRestApiSystemNetHttp.cs -------------------------------------------------------------------------------- /ParticleSDK/RestApi/ParticleRestApiWindowsWebHttp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/RestApi/ParticleRestApiWindowsWebHttp.cs -------------------------------------------------------------------------------- /ParticleSDK/Utils/DeviceNameGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/Utils/DeviceNameGenerator.cs -------------------------------------------------------------------------------- /ParticleSDK/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/ParticleSDK/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-iot/particle-windows-sdk/HEAD/README.md --------------------------------------------------------------------------------