C# Class Monobjc.SecurityInterface.SFChooseIdentityPanel

Mostrar archivo Open project: Monobjc/monobjc Class Usage Examples

Public Methods

Method Description
BeginSheetForWindowModalDelegateDidEndSelectorContextInfoIdentitiesMessage ( NSWindow docWindow, SheetDidEndReturnCodeContextInfoEventHandler modalDelegate, IntPtr contextInfo, NSArray identities, NSString message ) : void

Displays a list of identities in a modal sheet from which the user can select an identity.

Original signature is '- (void)beginSheetForWindow:(NSWindow *)docWindow modalDelegate:(id)delegate didEndSelector:(SEL)didEndSelector contextInfo:(void *)contextInfo identities:(NSArray *)identities message:(NSString *)message'

Available in Mac OS X v10.3 and later.

Method Details

BeginSheetForWindowModalDelegateDidEndSelectorContextInfoIdentitiesMessage() public method

Displays a list of identities in a modal sheet from which the user can select an identity.

Original signature is '- (void)beginSheetForWindow:(NSWindow *)docWindow modalDelegate:(id)delegate didEndSelector:(SEL)didEndSelector contextInfo:(void *)contextInfo identities:(NSArray *)identities message:(NSString *)message'

Available in Mac OS X v10.3 and later.

public BeginSheetForWindowModalDelegateDidEndSelectorContextInfoIdentitiesMessage ( NSWindow docWindow, SheetDidEndReturnCodeContextInfoEventHandler modalDelegate, IntPtr contextInfo, NSArray identities, NSString message ) : void
docWindow Monobjc.AppKit.NSWindow The parent window to which the sheet is attached.
modalDelegate SheetDidEndReturnCodeContextInfoEventHandler The delegate object in which the method specified in the didEndSelector parameter is implemented.
contextInfo System.IntPtr A pointer to data that is passed to the delegate method. You can use this data pointer for any purpose you wish.
identities NSArray An array of identity objects (objects of type SecIdentityRef). Use the SecIdentitySearchCopyNext function (in Security/SecIdentitySearch.h) to find identity objects.
message Monobjc.Foundation.NSString A message string to display in the sheet.
return void