[C#] Update auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / structs / ErrorMessage.cs
index 8ddb6965153ac185f9c26fd06171c988ee605897..9a4135a76e6057dd4384925ddb3df81fcc6090ef 100644 (file)
@@ -24,9 +24,11 @@ public class ErrorMessage : CommonBase {
         * with the sending peer should be closed.
         */
        public byte[] get_channel_id() {
-               byte[] ret = bindings.ErrorMessage_get_channel_id(this.ptr);
+               long ret = bindings.ErrorMessage_get_channel_id(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
        }
 
        /**
@@ -36,7 +38,7 @@ public class ErrorMessage : CommonBase {
         * with the sending peer should be closed.
         */
        public void set_channel_id(byte[] val) {
-               bindings.ErrorMessage_set_channel_id(this.ptr, InternalUtils.check_arr_len(val, 32));
+               bindings.ErrorMessage_set_channel_id(this.ptr, InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(val, 32)));
                GC.KeepAlive(this);
                GC.KeepAlive(val);
        }
@@ -49,9 +51,11 @@ public class ErrorMessage : CommonBase {
         * the terminal emulator or the logging subsystem.
         */
        public string get_data() {
-               string ret = bindings.ErrorMessage_get_data(this.ptr);
+               long ret = bindings.ErrorMessage_get_data(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               string ret_conv = InternalUtils.decodeString(ret);
+               return ret_conv;
        }
 
        /**
@@ -62,7 +66,7 @@ public class ErrorMessage : CommonBase {
         * the terminal emulator or the logging subsystem.
         */
        public void set_data(string val) {
-               bindings.ErrorMessage_set_data(this.ptr, val);
+               bindings.ErrorMessage_set_data(this.ptr, InternalUtils.encodeString(val));
                GC.KeepAlive(this);
                GC.KeepAlive(val);
        }
@@ -71,7 +75,7 @@ public class ErrorMessage : CommonBase {
         * Constructs a new ErrorMessage given each field
         */
        public static ErrorMessage of(byte[] channel_id_arg, string data_arg) {
-               long ret = bindings.ErrorMessage_new(InternalUtils.check_arr_len(channel_id_arg, 32), data_arg);
+               long ret = bindings.ErrorMessage_new(InternalUtils.encodeUint8Array(InternalUtils.check_arr_len(channel_id_arg, 32)), InternalUtils.encodeString(data_arg));
                GC.KeepAlive(channel_id_arg);
                GC.KeepAlive(data_arg);
                if (ret >= 0 && ret <= 4096) { return null; }
@@ -119,16 +123,18 @@ public class ErrorMessage : CommonBase {
         * Serialize the ErrorMessage object into a byte array which can be read by ErrorMessage_read
         */
        public byte[] write() {
-               byte[] ret = bindings.ErrorMessage_write(this.ptr);
+               long ret = bindings.ErrorMessage_write(this.ptr);
                GC.KeepAlive(this);
-               return ret;
+               if (ret >= 0 && ret <= 4096) { return null; }
+               byte[] ret_conv = InternalUtils.decodeUint8Array(ret);
+               return ret_conv;
        }
 
        /**
         * Read a ErrorMessage from a byte array, created by ErrorMessage_write
         */
        public static Result_ErrorMessageDecodeErrorZ read(byte[] ser) {
-               long ret = bindings.ErrorMessage_read(ser);
+               long ret = bindings.ErrorMessage_read(InternalUtils.encodeUint8Array(ser));
                GC.KeepAlive(ser);
                if (ret >= 0 && ret <= 4096) { return null; }
                Result_ErrorMessageDecodeErrorZ ret_hu_conv = Result_ErrorMessageDecodeErrorZ.constr_from_ptr(ret);