Share via


LowerCamelCaser Class

 

Default lower camel caser to resolve property names for ODataConventionModelBuilder. The rule is to convert the leading upper case characters to lower case, until a character, which is not the first character and is followed by a non-upper case character, is met. id => id, ID => id, MyName => myName, IOStream => ioStream, MyID => myid, yourID => yourID

Namespace:   System.Web.OData.Builder
Assembly:  System.Web.OData (in System.Web.OData.dll)

Inheritance Hierarchy

System.Object
  System.Web.OData.Builder.LowerCamelCaser

Syntax

public class LowerCamelCaser
public ref class LowerCamelCaser 
type LowerCamelCaser = class end
Public Class LowerCamelCaser

Constructors

Name Description
System_CAPS_pubmethod LowerCamelCaser()

Initializes a new instance of the LowerCamelCaser class.

System_CAPS_pubmethod LowerCamelCaser(NameResolverOptions)

Initializes a new instance of the LowerCamelCaser class.

Methods

Name Description
System_CAPS_pubmethod ApplyLowerCamelCase(ODataConventionModelBuilder)

Applies lower camel case.

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToLowerCamelCase(String)

Converts a String to lower camel case.

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

System.Web.OData.Builder Namespace

Return to top