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

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

Original signature is '- (void)parser:(NSXMLParser *)parser foundExternalEntityDeclarationWithName:(NSString *)entityName publicID:(NSString *)publicID systemID:(NSString *)systemID'

Available in Mac OS X v10.3 and later.

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