MonobjcMonobjc Documented Class Library
DeserializePropertyListFromDataAtCursorMutableContainers Method (data, cursor, mutable)
NamespacesMonobjc.FoundationNSDeserializerDeserializePropertyListFromDataAtCursorMutableContainers(NSData, IntPtr, Boolean)

Returns a property list object from a given location in a given serialized representation of a property list. (Deprecated in Mac OS X v10.2.)

Original signature is '+ (id)deserializePropertyListFromData:(NSData *)data atCursor:(unsigned *)cursor mutableContainers:(BOOL)mutable'

Available in Mac OS X v10.2 and later.

Declaration Syntax
C#Visual BasicVisual C++
[ObsoleteAttribute("Deprecated in Mac OS X v10.2.")]
public static Id DeserializePropertyListFromDataAtCursorMutableContainers(
	NSData data,
	IntPtr cursor,
	bool mutable
)
<ObsoleteAttribute("Deprecated in Mac OS X v10.2.")> _
Public Shared Function DeserializePropertyListFromDataAtCursorMutableContainers ( _
	data As NSData, _
	cursor As IntPtr, _
	mutable As Boolean _
) As Id
[ObsoleteAttribute(L"Deprecated in Mac OS X v10.2.")]
public:
static Id^ DeserializePropertyListFromDataAtCursorMutableContainers(
	NSData^ data, 
	IntPtr cursor, 
	bool mutable
)
Parameters
data (NSData)
A serialized representation of a property list.
cursor (IntPtr)

[Missing <param name="cursor"/> documentation for "M:Monobjc.Foundation.NSDeserializer.DeserializePropertyListFromDataAtCursorMutableContainers(Monobjc.Foundation.NSData,System.IntPtr,System.Boolean)"]

mutable (Boolean)
If YES and the property list object is a dictionary or an array, the recomposed object is made mutable
Return Value
A property list object corresponding to the representation in data at the location cursor. Returns nil if the property list object is not valid for property lists.
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)