ParseObjectRegisterSubclassT Method Parse
Registers a custom subclass type with the Parse SDK, enabling strong-typing of those ParseObjects whenever they appear. Subclasses must specify the ParseClassName attribute, have a default constructor, and properties backed by ParseObject fields should have ParseFieldName attributes supplied.

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

public static void RegisterSubclass<T>()
where T : new(), ParseObject

Type Parameters

T
The ParseObject subclass type to register.
See Also

Reference