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

Sent by a parser object to its delegate when it encounters a start tag for a given element.

Original signature is '- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict'

Available in Mac OS X v10.3 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate void ParserDidStartElementNamespaceURIQualifiedNameAttributesEventHandler(
	NSXMLParser parser,
	NSString elementName,
	NSString namespaceURI,
	NSString qualifiedName,
	NSDictionary attributeDict
)
Public Delegate Sub ParserDidStartElementNamespaceURIQualifiedNameAttributesEventHandler ( _
	parser As NSXMLParser, _
	elementName As NSString, _
	namespaceURI As NSString, _
	qualifiedName As NSString, _
	attributeDict As NSDictionary _
)
public delegate void ParserDidStartElementNamespaceURIQualifiedNameAttributesEventHandler(
	NSXMLParser^ parser, 
	NSString^ elementName, 
	NSString^ namespaceURI, 
	NSString^ qualifiedName, 
	NSDictionary^ attributeDict
)
Parameters
parser (NSXMLParser)
A parser object.
elementName (NSString)
A string that is the name of an element (in its start tag).
namespaceURI (NSString)
If namespace processing is turned on, contains the URI for the current namespace as a string object.
qualifiedName (NSString)
If namespace processing is turned on, contains the qualified name for the current namespace as a string object..
attributeDict (NSDictionary)
A dictionary that contains any attributes associated with the element. Keys are the names of attributes, and values are attribute values.
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)