C# Class PhotoSharingApp.AppService.Shared.Validation.DataModelSanitization

Various data sanitization functions.
Mostra file Open project: Microsoft/Appsample-Photosharing

Public Methods

Method Description
ToTitleCase ( this input ) : string

Formats string to TitleCase.

TrimAndReplaceMultipleWhitespaces ( this input ) : string

Remove leading/trailing spaces and replace multiple white spaces with one white space.

Method Details

ToTitleCase() public static method

Formats string to TitleCase.
public static ToTitleCase ( this input ) : string
input this String to modify.
return string

TrimAndReplaceMultipleWhitespaces() public static method

Remove leading/trailing spaces and replace multiple white spaces with one white space.
public static TrimAndReplaceMultipleWhitespaces ( this input ) : string
input this String to modify.
return string