wxr
2023-07-31 27cb19320ed4ac5552c17a263d0887a7cb88edc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
using System;
using System.Collections.Generic;
using Android.Runtime;
using Java.Interop;
 
namespace Com.Hdl.Hdllinphonesdk.Core.Callback {
 
    // Metadata.xml XPath class reference: path="/api/package[@name='com.hdl.hdllinphonesdk.core.callback']/class[@name='RegistrationCallback']"
    [global::Android.Runtime.Register ("com/hdl/hdllinphonesdk/core/callback/RegistrationCallback", DoNotGenerateAcw=true)]
    public abstract partial class RegistrationCallback : global::Java.Lang.Object {
        static readonly JniPeerMembers _members = new XAPeerMembers ("com/hdl/hdllinphonesdk/core/callback/RegistrationCallback", typeof (RegistrationCallback));
 
        internal static IntPtr class_ref {
            get { return _members.JniPeerType.PeerReference.Handle; }
        }
 
        [global::System.Diagnostics.DebuggerBrowsable (global::System.Diagnostics.DebuggerBrowsableState.Never)]
        [global::System.ComponentModel.EditorBrowsable (global::System.ComponentModel.EditorBrowsableState.Never)]
        public override global::Java.Interop.JniPeerMembers JniPeerMembers {
            get { return _members; }
        }
 
        [global::System.Diagnostics.DebuggerBrowsable (global::System.Diagnostics.DebuggerBrowsableState.Never)]
        [global::System.ComponentModel.EditorBrowsable (global::System.ComponentModel.EditorBrowsableState.Never)]
        protected override IntPtr ThresholdClass {
            get { return _members.JniPeerType.PeerReference.Handle; }
        }
 
        [global::System.Diagnostics.DebuggerBrowsable (global::System.Diagnostics.DebuggerBrowsableState.Never)]
        [global::System.ComponentModel.EditorBrowsable (global::System.ComponentModel.EditorBrowsableState.Never)]
        protected override global::System.Type ThresholdType {
            get { return _members.ManagedPeerType; }
        }
 
        protected RegistrationCallback (IntPtr javaReference, JniHandleOwnership transfer) : base (javaReference, transfer)
        {
        }
 
        // Metadata.xml XPath constructor reference: path="/api/package[@name='com.hdl.hdllinphonesdk.core.callback']/class[@name='RegistrationCallback']/constructor[@name='RegistrationCallback' and count(parameter)=0]"
        [Register (".ctor", "()V", "")]
        public unsafe RegistrationCallback () : base (IntPtr.Zero, JniHandleOwnership.DoNotTransfer)
        {
            const string __id = "()V";
 
            if (((global::Java.Lang.Object) this).Handle != IntPtr.Zero)
                return;
 
            try {
                var __r = _members.InstanceMethods.StartCreateInstance (__id, ((object) this).GetType (), null);
                SetHandle (__r.Handle, JniHandleOwnership.TransferLocalRef);
                _members.InstanceMethods.FinishCreateInstance (__id, this, null);
            } finally {
            }
        }
 
        static Delegate cb_registrationCleared;
#pragma warning disable 0169
        static Delegate GetRegistrationClearedHandler ()
        {
            if (cb_registrationCleared == null)
                cb_registrationCleared = JNINativeWrapper.CreateDelegate ((_JniMarshal_PP_V) n_RegistrationCleared);
            return cb_registrationCleared;
        }
 
        static void n_RegistrationCleared (IntPtr jnienv, IntPtr native__this)
        {
            var __this = global::Java.Lang.Object.GetObject<global::Com.Hdl.Hdllinphonesdk.Core.Callback.RegistrationCallback> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            __this.RegistrationCleared ();
        }
#pragma warning restore 0169
 
        // Metadata.xml XPath method reference: path="/api/package[@name='com.hdl.hdllinphonesdk.core.callback']/class[@name='RegistrationCallback']/method[@name='registrationCleared' and count(parameter)=0]"
        [Register ("registrationCleared", "()V", "GetRegistrationClearedHandler")]
        public virtual unsafe void RegistrationCleared ()
        {
            const string __id = "registrationCleared.()V";
            try {
                _members.InstanceMethods.InvokeVirtualVoidMethod (__id, this, null);
            } finally {
            }
        }
 
        static Delegate cb_registrationFailed;
#pragma warning disable 0169
        static Delegate GetRegistrationFailedHandler ()
        {
            if (cb_registrationFailed == null)
                cb_registrationFailed = JNINativeWrapper.CreateDelegate ((_JniMarshal_PP_V) n_RegistrationFailed);
            return cb_registrationFailed;
        }
 
        static void n_RegistrationFailed (IntPtr jnienv, IntPtr native__this)
        {
            var __this = global::Java.Lang.Object.GetObject<global::Com.Hdl.Hdllinphonesdk.Core.Callback.RegistrationCallback> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            __this.RegistrationFailed ();
        }
#pragma warning restore 0169
 
        // Metadata.xml XPath method reference: path="/api/package[@name='com.hdl.hdllinphonesdk.core.callback']/class[@name='RegistrationCallback']/method[@name='registrationFailed' and count(parameter)=0]"
        [Register ("registrationFailed", "()V", "GetRegistrationFailedHandler")]
        public virtual unsafe void RegistrationFailed ()
        {
            const string __id = "registrationFailed.()V";
            try {
                _members.InstanceMethods.InvokeVirtualVoidMethod (__id, this, null);
            } finally {
            }
        }
 
        static Delegate cb_registrationNone;
#pragma warning disable 0169
        static Delegate GetRegistrationNoneHandler ()
        {
            if (cb_registrationNone == null)
                cb_registrationNone = JNINativeWrapper.CreateDelegate ((_JniMarshal_PP_V) n_RegistrationNone);
            return cb_registrationNone;
        }
 
        static void n_RegistrationNone (IntPtr jnienv, IntPtr native__this)
        {
            var __this = global::Java.Lang.Object.GetObject<global::Com.Hdl.Hdllinphonesdk.Core.Callback.RegistrationCallback> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            __this.RegistrationNone ();
        }
#pragma warning restore 0169
 
        // Metadata.xml XPath method reference: path="/api/package[@name='com.hdl.hdllinphonesdk.core.callback']/class[@name='RegistrationCallback']/method[@name='registrationNone' and count(parameter)=0]"
        [Register ("registrationNone", "()V", "GetRegistrationNoneHandler")]
        public virtual unsafe void RegistrationNone ()
        {
            const string __id = "registrationNone.()V";
            try {
                _members.InstanceMethods.InvokeVirtualVoidMethod (__id, this, null);
            } finally {
            }
        }
 
        static Delegate cb_registrationOk;
#pragma warning disable 0169
        static Delegate GetRegistrationOkHandler ()
        {
            if (cb_registrationOk == null)
                cb_registrationOk = JNINativeWrapper.CreateDelegate ((_JniMarshal_PP_V) n_RegistrationOk);
            return cb_registrationOk;
        }
 
        static void n_RegistrationOk (IntPtr jnienv, IntPtr native__this)
        {
            var __this = global::Java.Lang.Object.GetObject<global::Com.Hdl.Hdllinphonesdk.Core.Callback.RegistrationCallback> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            __this.RegistrationOk ();
        }
#pragma warning restore 0169
 
        // Metadata.xml XPath method reference: path="/api/package[@name='com.hdl.hdllinphonesdk.core.callback']/class[@name='RegistrationCallback']/method[@name='registrationOk' and count(parameter)=0]"
        [Register ("registrationOk", "()V", "GetRegistrationOkHandler")]
        public virtual unsafe void RegistrationOk ()
        {
            const string __id = "registrationOk.()V";
            try {
                _members.InstanceMethods.InvokeVirtualVoidMethod (__id, this, null);
            } finally {
            }
        }
 
        static Delegate cb_registrationProgress;
#pragma warning disable 0169
        static Delegate GetRegistrationProgressHandler ()
        {
            if (cb_registrationProgress == null)
                cb_registrationProgress = JNINativeWrapper.CreateDelegate ((_JniMarshal_PP_V) n_RegistrationProgress);
            return cb_registrationProgress;
        }
 
        static void n_RegistrationProgress (IntPtr jnienv, IntPtr native__this)
        {
            var __this = global::Java.Lang.Object.GetObject<global::Com.Hdl.Hdllinphonesdk.Core.Callback.RegistrationCallback> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            __this.RegistrationProgress ();
        }
#pragma warning restore 0169
 
        // Metadata.xml XPath method reference: path="/api/package[@name='com.hdl.hdllinphonesdk.core.callback']/class[@name='RegistrationCallback']/method[@name='registrationProgress' and count(parameter)=0]"
        [Register ("registrationProgress", "()V", "GetRegistrationProgressHandler")]
        public virtual unsafe void RegistrationProgress ()
        {
            const string __id = "registrationProgress.()V";
            try {
                _members.InstanceMethods.InvokeVirtualVoidMethod (__id, this, null);
            } finally {
            }
        }
 
    }
 
    [global::Android.Runtime.Register ("com/hdl/hdllinphonesdk/core/callback/RegistrationCallback", DoNotGenerateAcw=true)]
    internal partial class RegistrationCallbackInvoker : RegistrationCallback {
        public RegistrationCallbackInvoker (IntPtr handle, JniHandleOwnership transfer) : base (handle, transfer)
        {
        }
 
        static readonly JniPeerMembers _members = new XAPeerMembers ("com/hdl/hdllinphonesdk/core/callback/RegistrationCallback", typeof (RegistrationCallbackInvoker));
 
        [global::System.Diagnostics.DebuggerBrowsable (global::System.Diagnostics.DebuggerBrowsableState.Never)]
        [global::System.ComponentModel.EditorBrowsable (global::System.ComponentModel.EditorBrowsableState.Never)]
        public override global::Java.Interop.JniPeerMembers JniPeerMembers {
            get { return _members; }
        }
 
        [global::System.Diagnostics.DebuggerBrowsable (global::System.Diagnostics.DebuggerBrowsableState.Never)]
        [global::System.ComponentModel.EditorBrowsable (global::System.ComponentModel.EditorBrowsableState.Never)]
        protected override global::System.Type ThresholdType {
            get { return _members.ManagedPeerType; }
        }
 
    }
}