MonobjcMonobjc Documented Class Library
BundleWithIdentifier Method (identifier)
NamespacesMonobjc.FoundationNSBundleBundleWithIdentifier(NSString)

Returns the previously created NSBundle instance that has the specified bundle identifier.

Original signature is '+ (NSBundle *)bundleWithIdentifier:(NSString *)identifier'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static NSBundle BundleWithIdentifier(
	NSString identifier
)
Public Shared Function BundleWithIdentifier ( _
	identifier As NSString _
) As NSBundle
public:
static NSBundle^ BundleWithIdentifier(
	NSString^ identifier
)
Parameters
identifier (NSString)
The identifier for an existing NSBundle instance.
Return Value
The previously created NSBundle instance that has the bundle identifier identifier. Returns nil if the requested bundle is not found.
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)