-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6685fec
commit 95524a2
Showing
12 changed files
with
60 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System; | ||
using System.IO; | ||
|
||
namespace KinveyXamarin | ||
{ | ||
/// <summary> | ||
/// The Kinvey File Delegate class is used for the callback pattern when executing file specific requests asynchronously. All Async* File methods will take one as a parameter. | ||
/// </summary> | ||
public class KinveyFileDelegate : KinveyDelegate<FileMetaData> | ||
{ | ||
/// <summary> | ||
/// This Action is executed when the file is downloaded. | ||
/// </summary> | ||
public Action<Stream> onDownload; | ||
|
||
|
||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
1. Right click the *References* folder within your project -> **Edit References** -> **.Net Assembly** -> Navigate to download location of kinvey library, and add all the dll files. | ||
2. Right click your project -> **Add** -> **Add Packages** | ||
1. Add "Json.NET" v6.0.6 | ||
2. Add "SQLite.Net.Async PCL" v2.4.1 | ||
3. Add "SQLite.Net PCL - <runtime> Platform" v2.4.1 where <runtime> is your project's target platform | ||
4. Add "LinqExtender" v3.0.1 | ||
5. Add "Microsoft HTTP Client Libraries" v2.2.28 | ||
6. Add "Microsoft Async" v1.0.168 | ||
7. Add "Microsoft BCL Build Components" v1.0.14 |
Binary file not shown.