Skip to content

Commit de4ecd9

Browse files
committed
WIP response models
1 parent e5f01f0 commit de4ecd9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+6209
-2723
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
**/bin
2+
**/obj
3+
**/.DS_Store
4+
**/.vs

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Appwrite .NET SDK
22

33
![License](https://img.shields.io/github/license/appwrite/sdk-for-dotnet.svg?style=flat-square)
4-
![Version](https://img.shields.io/badge/api%20version-0.9.0-blue.svg?style=flat-square)
4+
![Version](https://img.shields.io/badge/api%20version-0.11.0-blue.svg?style=flat-square)
55
[![Build Status](https://img.shields.io/travis/com/appwrite/sdk-generator?style=flat-square)](https://travis-ci.com/appwrite/sdk-generator)
66
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite_io?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite_io)
77
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
88

9-
**This SDK is compatible with Appwrite server version 0.9.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-dotnet/releases).**
9+
**This SDK is compatible with Appwrite server version 0.11.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-dotnet/releases).**
1010

1111
Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the .NET SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
1212

@@ -79,7 +79,7 @@ try {
7979
```
8080

8181
### Learn more
82-
You can use following resources to learn more and get help
82+
You can use the following resources to learn more and get help
8383
- 🚀 [Getting Started Tutorial](https://appwrite.io/docs/getting-started-for-server)
8484
- 📜 [Appwrite Docs](https://appwrite.io/docs)
8585
- 💬 [Discord Community](https://appwrite.io/discord)

docs/examples/users/update-email.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using Appwrite;
2+
3+
var client = new Client();
4+
5+
client
6+
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
7+
.SetProject("5df5acd0d48c2") // Your project ID
8+
.SetKey("919c2d18fb5d4...a2ae413da83346ad2") // Your secret API key
9+
;
10+
11+
Users users = new Users(client);
12+
13+
user result = await users.UpdateEmail("[USER_ID]", "[email protected]");

docs/examples/users/update-name.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using Appwrite;
2+
3+
var client = new Client();
4+
5+
client
6+
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
7+
.SetProject("5df5acd0d48c2") // Your project ID
8+
.SetKey("919c2d18fb5d4...a2ae413da83346ad2") // Your secret API key
9+
;
10+
11+
Users users = new Users(client);
12+
13+
user result = await users.UpdateName("[USER_ID]", "[NAME]");
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using Appwrite;
2+
3+
var client = new Client();
4+
5+
client
6+
.SetEndPoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint
7+
.SetProject("5df5acd0d48c2") // Your project ID
8+
.SetKey("919c2d18fb5d4...a2ae413da83346ad2") // Your secret API key
9+
;
10+
11+
Users users = new Users(client);
12+
13+
user result = await users.UpdatePassword("[USER_ID]", "password");

io/appwrite/src/Appwrite/Client.cs

Lines changed: 0 additions & 200 deletions
This file was deleted.

io/appwrite/src/Appwrite/Models/Rule.cs

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)