MonobjcMonobjc Documented Class Library
BeginSheetForWindowModalDelegateDidEndSelectorContextInfoSettingsKeychain Method (docWindow, delegate, didEndSelector, contextInfo, settings, keychain)
NamespacesMonobjc.SecurityInterfaceSFKeychainSettingsPanelBeginSheetForWindowModalDelegateDidEndSelectorContextInfoSettingsKeychain(NSWindow, Id, IntPtr, IntPtr, IntPtr, IntPtr)

Displays a sheet that allows users to change keychain settings.

Original signature is '- (void)beginSheetForWindow:(NSWindow *)docWindow modalDelegate:(id)delegate didEndSelector:(SEL)didEndSelector contextInfo:(void *)contextInfo settings:(SecKeychainSettings *)settings keychain:(SecKeychainRef)keychain'

Available in Mac OS X v10.3 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void BeginSheetForWindowModalDelegateDidEndSelectorContextInfoSettingsKeychain(
	NSWindow docWindow,
	Id delegate,
	IntPtr didEndSelector,
	IntPtr contextInfo,
	IntPtr settings,
	IntPtr keychain
)
Public Overridable Sub BeginSheetForWindowModalDelegateDidEndSelectorContextInfoSettingsKeychain ( _
	docWindow As NSWindow, _
	delegate As Id, _
	didEndSelector As IntPtr, _
	contextInfo As IntPtr, _
	settings As IntPtr, _
	keychain As IntPtr _
)
public:
virtual void BeginSheetForWindowModalDelegateDidEndSelectorContextInfoSettingsKeychain(
	NSWindow^ docWindow, 
	Id^ delegate, 
	IntPtr didEndSelector, 
	IntPtr contextInfo, 
	IntPtr settings, 
	IntPtr keychain
)
Parameters
docWindow (NSWindow)
The parent window to which the sheet is attached. If this parameter is nil, the behavior defaults to a standalone modal window.
delegate (Id)
The delegate object in which the method specified in the didEndSelector parameter is implemented.
didEndSelector (IntPtr)
A method selector for a delegate method called after the modal session has ended, but before the sheet has been dismissed. Implementation of this delegate method is optional.
contextInfo (IntPtr)
A pointer to data that is passed to the delegate method. You can use this data pointer for any purpose you wish.
settings (IntPtr)
A pointer to a keychain settings structure. Because this structure is versioned, you must preallocate it and fill in the version of the structure.
keychain (IntPtr)
The keychain whose settings you wish to have the user change.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.SecurityInterface (Module: Monobjc.SecurityInterface)