MonobjcMonobjc Documented Class Library
NSXMLParser..::..ParserFoundUnparsedEntityDeclarationWithNamePublicIDSystemIDNotationNameEventHandler Delegate
NamespacesMonobjc.FoundationNSXMLParserNSXMLParser..::..ParserFoundUnparsedEntityDeclarationWithNamePublicIDSystemIDNotationNameEventHandler

Sent by a parser object to its delegate when it encounters an unparsed entity declaration.

Original signature is '- (void)parser:(NSXMLParser *)parser foundUnparsedEntityDeclarationWithName:(NSString *)name publicID:(NSString *)publicID systemID:(NSString *)systemID notationName:(NSString *)notationName'

Available in Mac OS X v10.3 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate void ParserFoundUnparsedEntityDeclarationWithNamePublicIDSystemIDNotationNameEventHandler(
	NSXMLParser parser,
	NSString name,
	NSString publicID,
	NSString systemID,
	NSString notationName
)
Public Delegate Sub ParserFoundUnparsedEntityDeclarationWithNamePublicIDSystemIDNotationNameEventHandler ( _
	parser As NSXMLParser, _
	name As NSString, _
	publicID As NSString, _
	systemID As NSString, _
	notationName As NSString _
)
public delegate void ParserFoundUnparsedEntityDeclarationWithNamePublicIDSystemIDNotationNameEventHandler(
	NSXMLParser^ parser, 
	NSString^ name, 
	NSString^ publicID, 
	NSString^ systemID, 
	NSString^ notationName
)
Parameters
parser (NSXMLParser)
An NSXMLParser object parsing XML.
name (NSString)
A string that is the name of the unparsed entity in the declaration.
publicID (NSString)
A string specifying the public ID associated with the entity name.
systemID (NSString)
A string specifying the system ID associated with the entity name.
notationName (NSString)
A string specifying a notation of the declaration of entity name.
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)