ParseObjectCreateWithoutDataT Method (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 T CreateWithoutData<T>(
	string objectId
)
where T : ParseObject

Parameters

objectId
Type: SystemString
The object id for the referenced object.

Type Parameters

T

Return Value

Type: T
A ParseObject without data.
See Also

Reference