SerializePropertyNamesAsCamelCaseAttribute.IsDefinedOnType Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
IsDefinedOnType(Type) |
Indicates whether the given type is annotated with SerializePropertyNamesAsCamelCaseAttribute. |
IsDefinedOnType<T>() |
Indicates whether the given type is annotated with SerializePropertyNamesAsCamelCaseAttribute. |
IsDefinedOnType(Type)
Indicates whether the given type is annotated with SerializePropertyNamesAsCamelCaseAttribute.
public static bool IsDefinedOnType (Type modelType);
static member IsDefinedOnType : Type -> bool
Public Shared Function IsDefinedOnType (modelType As Type) As Boolean
Parameters
- modelType
- Type
The type to test.
Returns
true if the given type is annotated with SerializePropertyNamesAsCamelCaseAttribute, false otherwise.
Applies to
IsDefinedOnType<T>()
Indicates whether the given type is annotated with SerializePropertyNamesAsCamelCaseAttribute.
public static bool IsDefinedOnType<T> ();
static member IsDefinedOnType : unit -> bool
Public Shared Function IsDefinedOnType(Of T) () As Boolean
Type Parameters
- T
The type to test.
Returns
true if the given type is annotated with SerializePropertyNamesAsCamelCaseAttribute, false otherwise.
Applies to
Azure SDK for .NET