예제 #1
0
        public static void SetBroadcast(this IEpos2FilterOption This, string value)
        {
            if (value == null)
            {
                throw new ArgumentNullException("value");
            }
            var nsvalue = NSString.CreateNative(value);

            global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("setBroadcast:"), nsvalue);
            NSString.ReleaseNative(nsvalue);
        }
예제 #2
0
 public static void SetDeviceType(this IEpos2FilterOption This, int value)
 {
     global::ApiDefinition.Messaging.void_objc_msgSend_int(This.Handle, Selector.GetHandle("setDeviceType:"), value);
 }
예제 #3
0
 public static int GetDeviceType(this IEpos2FilterOption This)
 {
     return(global::ApiDefinition.Messaging.int_objc_msgSend(This.Handle, Selector.GetHandle("deviceType")));
 }
예제 #4
0
 public static string GetBroadcast(this IEpos2FilterOption This)
 {
     return(NSString.FromHandle(global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("broadcast"))));
 }