PeterO.Cbor.ICBORToFromConverter-T

PeterO.Cbor.ICBORToFromConverter

public interface ICBORToFromConverter<T> :
    PeterO.Cbor.ICBORConverter<T>

Classes that implement this interface can support conversions from CBOR objects to a custom type and back.

Member Summary

Parameters:

FromCBORObject

T FromCBORObject(
    PeterO.Cbor.CBORObject obj);

Converts a CBOR object to a custom type.

Parameters:

Return Value:

An object of the custom type after conversion.

Back to CBOR start page.