Method | Description | |
---|---|---|
IsClassDirective ( string className ) : bool |
Checks whether the class is the Angular class directive
|
|
IsCommentDirective ( string commentText ) : bool |
Checks whether the comment is the Angular comment directive
|
|
NormalizeDirectiveName ( string directiveName ) : string |
Normalizes a directive name
|
|
ParseClassDirective ( string className, DirectiveNameDelegate directiveNameHandler, ExpressionDelegate expressionHandler, SemicolonDelegate semicolonHandler ) : void |
Parses a Angular class directive
|
|
ParseCommentDirective ( string commentText, DirectiveNameDelegate directiveNameHandler, ExpressionDelegate expressionHandler ) : void |
Parses a Angular comment directive
|
Method | Description | |
---|---|---|
ToCamelCase ( string value ) : string |
Converts a string value to camel case
|
public static IsClassDirective ( string className ) : bool | ||
className | string | Class name |
return | bool |
public static IsCommentDirective ( string commentText ) : bool | ||
commentText | string | Comment text |
return | bool |
public static NormalizeDirectiveName ( string directiveName ) : string | ||
directiveName | string | Directive name |
return | string |
public static ParseClassDirective ( string className, DirectiveNameDelegate directiveNameHandler, ExpressionDelegate expressionHandler, SemicolonDelegate semicolonHandler ) : void | ||
className | string | Class name |
directiveNameHandler | DirectiveNameDelegate | Directive name handler |
expressionHandler | ExpressionDelegate | Binding expression handler |
semicolonHandler | SemicolonDelegate | Semicolon handler |
return | void |
public static ParseCommentDirective ( string commentText, DirectiveNameDelegate directiveNameHandler, ExpressionDelegate expressionHandler ) : void | ||
commentText | string | Comment text |
directiveNameHandler | DirectiveNameDelegate | Directive name handler |
expressionHandler | ExpressionDelegate | Binding expression handler |
return | void |