MonobjcMonobjc Documented Class Library
DeserializePropertyListLazilyFromDataAtCursorLengthMutableContainers Method (data, cursor, length, mutable)
NamespacesMonobjc.FoundationNSDeserializerDeserializePropertyListLazilyFromDataAtCursorLengthMutableContainers(NSData, IntPtr, UInt32, Boolean)

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

Original signature is '+ (id)deserializePropertyListLazilyFromData:(NSData *)data atCursor:(unsigned *)cursor length:(unsigned)length 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 DeserializePropertyListLazilyFromDataAtCursorLengthMutableContainers(
	NSData data,
	IntPtr cursor,
	uint length,
	bool mutable
)
<ObsoleteAttribute("Deprecated in Mac OS X v10.2.")> _
Public Shared Function DeserializePropertyListLazilyFromDataAtCursorLengthMutableContainers ( _
	data As NSData, _
	cursor As IntPtr, _
	length As UInteger, _
	mutable As Boolean _
) As Id
[ObsoleteAttribute(L"Deprecated in Mac OS X v10.2.")]
public:
static Id^ DeserializePropertyListLazilyFromDataAtCursorLengthMutableContainers(
	NSData^ data, 
	IntPtr cursor, 
	unsigned int length, 
	bool mutable
)
Parameters
data (NSData)
A serialized representation of a property list.
cursor (IntPtr)
The cursor location.
length (UInt32)
The number of bytes to read.
mutable (Boolean)
If YES and the object is a dictionary or an array, the recomposed object is made mutable.
Return Value
A property list from data at location cursor, or nil if data does not represent a property list.
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)