public static void SetProfileID(this ICCCAccount This, NSNumber value) { if (value == null) { throw new ArgumentNullException("value"); } global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("setProfileID:"), value.Handle); }
public static void SetAccountType(this ICCCAccount 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("setAccountType:"), nsvalue); NSString.ReleaseNative(nsvalue); }
public static string GetAccountType(this ICCCAccount This) { return(NSString.FromHandle(global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("accountType")))); }
public static NSData GetDataForObject(this ICCCAccount This) { return(Runtime.GetNSObject <NSData> (global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("dataForObject")))); }
public static void SetGovernmentIssued(this ICCCAccount This, bool value) { global::ApiDefinition.Messaging.void_objc_msgSend_bool(This.Handle, Selector.GetHandle("setGovernmentIssued:"), value); }
public static NSNumber GetProfileID(this ICCCAccount This) { return(Runtime.GetNSObject <NSNumber> (global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("profileID")))); }
public static bool GetGovernmentIssued(this ICCCAccount This) { return(global::ApiDefinition.Messaging.bool_objc_msgSend(This.Handle, Selector.GetHandle("governmentIssued"))); }
public static NSDate GetExpirationDate(this ICCCAccount This) { return(Runtime.GetNSObject <NSDate> (global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("expirationDate")))); }
public static bool GetDefaultAccount(this ICCCAccount This) { return(global::ApiDefinition.Messaging.bool_objc_msgSend(This.Handle, Selector.GetHandle("defaultAccount"))); }
public static void SetAccountUpdaterOptOut(this ICCCAccount This, bool value) { global::ApiDefinition.Messaging.void_objc_msgSend_bool(This.Handle, Selector.GetHandle("setAccountUpdaterOptOut:"), value); }
public static bool GetAccountUpdaterOptOut(this ICCCAccount This) { return(global::ApiDefinition.Messaging.bool_objc_msgSend(This.Handle, Selector.GetHandle("accountUpdaterOptOut"))); }