EdjCase.ICP.Candid 6.1.1

dotnet add package EdjCase.ICP.Candid --version 6.1.1
NuGet\Install-Package EdjCase.ICP.Candid -Version 6.1.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EdjCase.ICP.Candid" Version="6.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EdjCase.ICP.Candid --version 6.1.1
#r "nuget: EdjCase.ICP.Candid, 6.1.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install EdjCase.ICP.Candid as a Cake Addin
#addin nuget:?package=EdjCase.ICP.Candid&version=6.1.1

// Install EdjCase.ICP.Candid as a Cake Tool
#tool nuget:?package=EdjCase.ICP.Candid&version=6.1.1

Candid - Library of Candid Encoding, Models and Helpers

Using Native Candid Types

  • CandidArg is the set of candid typed value parameters that is sent to a IC canister for a request
  • CandidTypedValue is the combo of a CandidValue and its corresponding CandidType
  • CandidValue is a raw candid value
  • CandidType is the type definition of a candid type

Create Type

Some Examples:

// Nat (positive integer)
CandidType natType = CandidType.Nat(); // shorthand for `new CandidPrimitiveType(PrimitiveType.Nat)`

// Text (string)
CandidType textType = CandidType.Text(); // shorthand for `new CandidPrimitiveType(PrimitiveType.Text)`

// Opt (optional/nullable) Principal (identifier)
CandidType optionalPrincipalType = CandidType.Opt(CandidType.Principal());

// Record (dictionary/object)
CandidType recordType = new CandidRecordType(new Dictionary<CandidTag, CandidType>
{
    { CandidTag.FromName("name"), CandidType.Text() },
    { CandidTag.FromName("age"), CandidType.Nat() }
});

// Variant (union)
CandidType variantType = new CandidVariantType(new Dictionary<CandidTag, CandidType>
{
    { CandidTag.FromName("option1"), CandidType.Bool() },
    { CandidTag.FromName("option2"), CandidType.Null() }
});

// Vec (list/array) of Float32
CandidType float32Vec = new CandidVectorType(CandidType.Float32());

Create Value

Some Examples:

// Nat (positive integer)
CandidValue natType = CandidValue.Nat(4);

// Text (string)
CandidValue textType = CandidValue.Text("SomeText");

// Opt (optional/nullable) Principal (identifier)
CandidValue optionalPrincipalType = new CandidOptional(CandidValue.Principal(Principal.Anonymous()));

// Record (dictionary/object)
CandidValue recordType = new CandidRecord(new Dictionary<CandidTag, CandidValue>
{
    { CandidTag.FromName("name"), CandidValue.Text("Name1") },
    { CandidTag.FromName("age"), CandidValue.Nat(21) }
});

// Variant (union)
CandidValue variantType = new CandidVariant("option1", CandidValue.Bool(true));

// Vec (list/array) of Float32
CandidValue float32Vec = new CandidVector(new CandidValue[]
{
    CandidValue.Float32(1.1f),
    CandidValue.Float32(2.2f),
    CandidValue.Float32(3.3f)
});

Parse From bytes

When candid is encoded, its in the form of a CandidArg. Individual values and types are not usually encoded

CandidArg arg = CandidByteParser.Parse(rawCandidBytes);

OR

CandidArg arg = CandidArg.FromBytes(rawCandidBytes);

Reading Values (without custom types)

// Assume arg is `(Nat, record { title : Text; length : Nat; })`
CandidArg arg = ...;
CandidTypedValue firstTypedValue = arg.Values[0];
UnboundedUInt natValue = firstTypedValue.Value.AsNat();
CandidTypedValue secondTypedValue = arg.Values[1];
CandidRecord recordValue = secondTypedValue.Value.AsRecord();
string title = recordValue["title"].AsText();
UnboundedUInt length = recordValue["length"].AsNat();

Using Self Defined Types

Self defined types are helpful for predefining classes to the candid schema of an endpoint. This can be done manually (as shown below) or done automattically with the ClientGenerator

From Candid To Self Defined Type

Single argument:

CandidArg arg = ...;
MyObj1 obj = arg.ToObjects<MyObj1>();

Multi arguments:

CandidArg arg = ...;
(MyObj1 obj, MyObj2 obj2) = arg.ToObjects<MyObj1, MyObj2>();

To Candid From Self Defined Type

// Serialze
MyObj obj = new MyObj
{
    Title = "Title 1",
    IsGoodTitle = false
};
CandidTypedValue value = CandidTypedValue.FromObject(obj);

Defining Variant Types

[Variant] // Required to flag as variant
public class MyVariant
{
	[VariantTagProperty] // Flag for tag/enum property, not required if name is `Tag`
	public MyVariantTag Tag { get; set; }
	[VariantValueProperty] // Flag for value property, not required if name is `Value`
	public object? Value { get; set; }


	// This method is used to specify if the option has a type/value associated
	[VariantOption("o2")] // Specify the candid tag if different than 'As{CandidTag}' like 'Option2' here
	public string AsOption2()
	{
		return (string)this.Value!;
	}
}

public enum MyVariantTag
{
    [CandidName("o1")] // Used to override name for candid
    Option1,
    [CandidName("o2")]
    Option2
}

Or if variant options have no type, just an Enum can be used

public enum MyVariant
{
    [CandidName("o1")]
    Option1,
    [CandidName("o2")]
    Option2
}

Defining Record Types

public class MyRecord
{
    [CandidName("title")] // Used to override name for candid
    public string Title { get; set; }
    [CandidName("is_good_title")]
    public bool IsGoodTitle { get; set; }
}

NOTE: [CandidName(...)] is not needed if the property name is exactly the same as the candid name

// Equivalent to above
public class MyRecord
{
    public string title { get; set; }
    public bool is_good_title { get; set; }
}

Defining Other Types

(C# type) -> (Candid type)

UnboundedUInt -> Nat
byte -> Nat8
ushort -> Nat16
uint -> Nat32
ulong -> Nat64
UnboundedInt -> Int
sbyte -> Int8
short -> Int16
int -> Int32
long -> Int64
string -> Text
float -> Float32
double -> Float64
bool -> Bool
Principal -> Principal
List<T> -> Vec T
T[] -> Vec T
CandidFunc -> Func
OptionalValue<T> -> Opt T
EmptyValue -> Empty
ReservedValue -> Reserved
NullValue -> Null
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on EdjCase.ICP.Candid:

Package Downloads
EdjCase.ICP.Agent

Package Description

EdjCase.ICP.InternetIdentity

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.1.1 120 4/17/2024
6.1.0 117 4/15/2024
6.0.0 153 3/21/2024
5.1.0 213 1/25/2024
5.0.0 603 1/12/2024
5.0.0-pre.2 110 12/13/2023
5.0.0-pre.1 58 12/11/2023
4.1.0 465 11/10/2023
4.0.1 250 11/1/2023
4.0.0 379 10/12/2023
4.0.0-pre.10 71 10/10/2023
4.0.0-pre.9 66 10/10/2023
4.0.0-pre.8 72 10/9/2023
4.0.0-pre.7 62 10/9/2023
4.0.0-pre.6 66 10/9/2023
4.0.0-pre.5 66 10/8/2023
4.0.0-pre.4 69 10/6/2023
4.0.0-pre.3 64 10/5/2023
4.0.0-pre.2 69 9/27/2023
4.0.0-pre.1 65 9/25/2023
3.2.2 505 9/22/2023
3.2.1 191 9/22/2023
3.2.0 778 8/2/2023
3.1.5 180 9/27/2023
3.1.4 351 7/20/2023
3.1.3 724 6/12/2023
3.1.2 1,211 5/11/2023
3.1.1 364 5/9/2023
3.1.0 289 5/9/2023
3.0.1 325 5/2/2023
3.0.0 293 5/1/2023
3.0.0-beta.1 106 4/17/2023
2.3.9 270 5/1/2023
2.3.8 304 4/28/2023
2.3.7 293 4/28/2023
2.3.6 297 4/28/2023
2.3.5 342 4/27/2023
2.3.4 315 4/27/2023
2.3.3 335 4/26/2023
2.3.2 323 4/26/2023
2.3.1 459 4/26/2023
2.3.0 339 4/25/2023
2.2.10 350 4/24/2023
2.2.9 318 4/24/2023
2.2.8 334 4/24/2023
2.2.7 571 4/17/2023
2.2.6 651 4/12/2023
2.2.5 364 4/12/2023
2.2.4 452 4/11/2023
2.2.3 362 4/11/2023
2.2.2 436 4/7/2023
2.2.1 382 4/7/2023
2.2.0 414 4/6/2023
2.1.1 547 3/30/2023
2.1.0 664 3/23/2023
2.0.8 491 3/20/2023
2.0.7 555 3/12/2023
2.0.6 268 3/12/2023
2.0.5 247 3/12/2023
2.0.4 280 3/12/2023
2.0.3 261 3/12/2023
2.0.2 478 3/10/2023
2.0.1 477 3/10/2023
2.0.0 508 3/8/2023
2.0.0-beta.26 109 3/8/2023
2.0.0-beta.25 108 3/8/2023
2.0.0-beta.24 115 3/7/2023
2.0.0-beta.23 113 3/6/2023
2.0.0-beta.22 110 3/1/2023
2.0.0-beta.21 108 2/28/2023
2.0.0-beta.20 124 2/20/2023
2.0.0-beta.19 115 2/14/2023
2.0.0-beta.18 110 2/14/2023
2.0.0-beta.17 117 2/14/2023
2.0.0-beta.16 115 2/11/2023
2.0.0-beta.15 120 2/10/2023
2.0.0-beta.14 123 2/6/2023
2.0.0-beta.13 126 2/3/2023
2.0.0-beta.12 132 2/2/2023
2.0.0-beta.11 138 1/30/2023
2.0.0-beta.10 132 1/23/2023
2.0.0-beta.9 138 1/19/2023
2.0.0-beta.8 126 1/19/2023
2.0.0-beta.7 139 1/12/2023
2.0.0-beta.6 126 12/31/2022
2.0.0-beta.5 122 12/30/2022
2.0.0-beta.4 127 12/21/2022
2.0.0-beta.3 127 12/19/2022
2.0.0-beta.2 126 12/10/2022
2.0.0-beta.1 130 12/2/2022
1.2.1 657 11/29/2022
1.2.0 617 11/28/2022
1.1.0 627 11/28/2022
1.0.3 619 11/25/2022
1.0.2 786 6/8/2022
1.0.1 818 6/7/2022
0.0.1-beta.20 160 6/1/2022
0.0.1-beta.19 158 5/20/2022
0.0.1-beta.18 153 5/20/2022
0.0.1-beta.14 168 5/19/2022
0.0.1-beta.13 161 5/18/2022
0.0.1-beta.2 193 5/16/2022
0.0.1-beta.1 175 5/11/2022