SerializePropertyNamesAsCamelCaseAttribute.IsDefinedOnType Method

Definition

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)

Source:
SerializePropertyNamesAsCamelCaseAttribute.cs

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>()

Source:
SerializePropertyNamesAsCamelCaseAttribute.cs

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