MonobjcMonobjc Documented Class Library
PostNotificationNameObjectUserInfo Method (notificationName, notificationSender, userInfo)
NamespacesMonobjc.FoundationNSNotificationCenterPostNotificationNameObjectUserInfo(NSString, Id, NSDictionary)

Creates a notification with a given name, sender, and information and posts it to the receiver.

Original signature is '- (void)postNotificationName:(NSString *)notificationName object:(id)notificationSender userInfo:(NSDictionary *)userInfo'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void PostNotificationNameObjectUserInfo(
	NSString notificationName,
	Id notificationSender,
	NSDictionary userInfo
)
Public Overridable Sub PostNotificationNameObjectUserInfo ( _
	notificationName As NSString, _
	notificationSender As Id, _
	userInfo As NSDictionary _
)
public:
virtual void PostNotificationNameObjectUserInfo(
	NSString^ notificationName, 
	Id^ notificationSender, 
	NSDictionary^ userInfo
)
Parameters
notificationName (NSString)
The name of the notification.
notificationSender (Id)
The object posting the notification.
userInfo (NSDictionary)
Information about the the notification. May be nil.
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.Foundation (Module: Monobjc.Foundation)