ParseObjectCreateWithoutData Method (String, String)Parse
Creates a reference to an existing ParseObject for use in creating associations between ParseObjects. Calling IsDataAvailable on this object will return false until FetchIfNeededAsyncT(T) has been called. No network request will be made.

Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax

public static ParseObject CreateWithoutData(
	string className,
	string objectId
)

Parameters

className
Type: SystemString
The object's class.
objectId
Type: SystemString
The object id for the referenced object.

Return Value

Type: ParseObject
A ParseObject without data.
See Also

Reference