Class Validator
Contains validation methods
Inheritance
System.Object
Validator
Namespace: EPiServer.Data
Assembly: EPiServer.Data.dll
Version: 12.0.3Syntax
public static class Validator : Object
Methods
ValidateArgNotNull(String, Object)
Validates that an argument passed to a method is not null
Declaration
public static void ValidateArgNotNull(string name, object value)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name of the argument to validate |
System. |
value | The value of the argument to validate |
ValidateArgNotNullOrEmpty(String, String)
Validates that a System.
Declaration
public static void ValidateArgNotNullOrEmpty(string name, string value)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name of the argument to validate |
System. |
value | The value of the argument to validate |
ValidateForInvalidSqlIdentifier(IEnumerable<String>)
Declaration
public static void ValidateForInvalidSqlIdentifier(IEnumerable<string> identifiers)
Parameters
Type | Name | Description |
---|---|---|
System. |
identifiers |
ValidateForSqlInjection(StoreDefinitionParameters)
Declaration
public static void ValidateForSqlInjection(StoreDefinitionParameters parameters)
Parameters
Type | Name | Description |
---|---|---|
Store |
parameters |
ValidateForSqlInjection(String, String)
Validates that a System.
Declaration
public static void ValidateForSqlInjection(string name, string value)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name of the argument to validate |
System. |
value | The value of the argument to validate |
ValidateLength(String, String, Int32, Int32)
Declaration
public static void ValidateLength(string name, string value, int minLength, int maxLength)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | |
System. |
value | |
System. |
minLength | |
System. |
maxLength |
ValidateNotReadOnly(IReadOnly)
Throws an exception if the instance is read-only
Declaration
public static void ValidateNotReadOnly(IReadOnly readOnly)
Parameters
Type | Name | Description |
---|---|---|
IRead |
readOnly | The instance that is being validated |
Exceptions
Type | Condition |
---|---|
System. |