SqlFunctions.Checksum Method

 

Returns the checksum value computed over the input argument.

Namespace:   System.Data.Entity.SqlServer
Assembly:  EntityFramework.SqlServer (in EntityFramework.SqlServer.dll)

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticChecksum(Byte[])

Returns the checksum value computed over the input argument.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Byte[], Byte[])

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Byte[], Byte[], Byte[])

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<Boolean>)

Returns the checksum value computed over the input argument.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<Boolean>, Nullable<Boolean>)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<DateTime>)

Returns the checksum value computed over the input argument.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<DateTime>, Nullable<DateTime>)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<DateTimeOffset>)

Returns the checksum value computed over the input argument.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<Decimal>)

Returns the checksum value computed over the input argument.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<Decimal>, Nullable<Decimal>)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<Decimal>, Nullable<Decimal>, Nullable<Decimal>)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<Double>)

Returns the checksum value computed over the input argument.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<Double>, Nullable<Double>)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<Double>, Nullable<Double>, Nullable<Double>)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<Guid>)

Returns the checksum value computed over the input argument.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<Guid>, Nullable<Guid>)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<Guid>, Nullable<Guid>, Nullable<Guid>)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<TimeSpan>)

Returns the checksum value computed over the input argument.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<TimeSpan>, Nullable<TimeSpan>)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(String)

Returns the checksum value computed over the input argument.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(String, String)

Returns the checksum value computed over the input arguments.

System_CAPS_pubmethodSystem_CAPS_staticChecksum(String, String, String)

Returns the checksum value computed over the input arguments.


SqlFunctions.Checksum Method (Byte[])

Returns the checksum value computed over the input argument.

[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
public static Nullable<int> Checksum(
	byte[] arg1
)

Parameters

arg1
Type: System.Byte[]

The character array for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input value.


SqlFunctions.Checksum Method (Byte[], Byte[])

Returns the checksum value computed over the input arguments.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
public static Nullable<int> Checksum(
	byte[] arg1,
	byte[] arg2
)

Parameters

arg1
Type: System.Byte[]

The character array for which the checksum is calculated.

arg2
Type: System.Byte[]

The character array for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Byte[], Byte[], Byte[])

Returns the checksum value computed over the input arguments.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg3")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
public static Nullable<int> Checksum(
	byte[] arg1,
	byte[] arg2,
	byte[] arg3
)

Parameters

arg1
Type: System.Byte[]

The character array for which the checksum is calculated.

arg2
Type: System.Byte[]

The character array for which the checksum is calculated.

arg3
Type: System.Byte[]

The character array for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<Boolean>)

Returns the checksum value computed over the input argument.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
public static Nullable<int> Checksum(
	Nullable<bool> arg1
)

Parameters

arg1
Type: System.Nullable<Boolean>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input value.


SqlFunctions.Checksum Method (Nullable<Boolean>, Nullable<Boolean>)

Returns the checksum value computed over the input arguments.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
public static Nullable<int> Checksum(
	Nullable<bool> arg1,
	Nullable<bool> arg2
)

Parameters

arg1
Type: System.Nullable<Boolean>

The value for which the checksum is calculated.

arg2
Type: System.Nullable<Boolean>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>)

Returns the checksum value computed over the input arguments.

[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg3")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
public static Nullable<int> Checksum(
	Nullable<bool> arg1,
	Nullable<bool> arg2,
	Nullable<bool> arg3
)

Parameters

arg1
Type: System.Nullable<Boolean>

The value for which the checksum is calculated.

arg2
Type: System.Nullable<Boolean>

The value for which the checksum is calculated.

arg3
Type: System.Nullable<Boolean>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<DateTime>)

Returns the checksum value computed over the input argument.

[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
public static Nullable<int> Checksum(
	Nullable<DateTime> arg1
)

Parameters

arg1
Type: System.Nullable<DateTime>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<DateTime>, Nullable<DateTime>)

Returns the checksum value computed over the input arguments.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
public static Nullable<int> Checksum(
	Nullable<DateTime> arg1,
	Nullable<DateTime> arg2
)

Parameters

arg1
Type: System.Nullable<DateTime>

The value for which the checksum is calculated.

arg2
Type: System.Nullable<DateTime>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>)

Returns the checksum value computed over the input arguments.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg3")]
public static Nullable<int> Checksum(
	Nullable<DateTime> arg1,
	Nullable<DateTime> arg2,
	Nullable<DateTime> arg3
)

Parameters

arg1
Type: System.Nullable<DateTime>

The value for which the checksum is calculated.

arg2
Type: System.Nullable<DateTime>

The value for which the checksum is calculated.

arg3
Type: System.Nullable<DateTime>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<DateTimeOffset>)

Returns the checksum value computed over the input argument.

[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
public static Nullable<int> Checksum(
	Nullable<DateTimeOffset> arg1
)

Parameters

arg1
Type: System.Nullable<DateTimeOffset>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input value.


SqlFunctions.Checksum Method (Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

Returns the checksum value computed over the input arguments.

[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
public static Nullable<int> Checksum(
	Nullable<DateTimeOffset> arg1,
	Nullable<DateTimeOffset> arg2
)

Parameters

arg1
Type: System.Nullable<DateTimeOffset>

The value for which the checksum is calculated.

arg2
Type: System.Nullable<DateTimeOffset>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<DateTimeOffset>, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

Returns the checksum value computed over the input arguments.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg3")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
public static Nullable<int> Checksum(
	Nullable<DateTimeOffset> arg1,
	Nullable<DateTimeOffset> arg2,
	Nullable<DateTimeOffset> arg3
)

Parameters

arg1
Type: System.Nullable<DateTimeOffset>

The value for which the checksum is calculated.

arg2
Type: System.Nullable<DateTimeOffset>

The value for which the checksum is calculated.

arg3
Type: System.Nullable<DateTimeOffset>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<Decimal>)

Returns the checksum value computed over the input argument.

[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
public static Nullable<int> Checksum(
	Nullable<decimal> arg1
)

Parameters

arg1
Type: System.Nullable<Decimal>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input value.


SqlFunctions.Checksum Method (Nullable<Decimal>, Nullable<Decimal>)

Returns the checksum value computed over the input arguments.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
public static Nullable<int> Checksum(
	Nullable<decimal> arg1,
	Nullable<decimal> arg2
)

Parameters

arg1
Type: System.Nullable<Decimal>

The value for which the checksum is calculated.

arg2
Type: System.Nullable<Decimal>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<Decimal>, Nullable<Decimal>, Nullable<Decimal>)

Returns the checksum value computed over the input arguments.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg3")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
public static Nullable<int> Checksum(
	Nullable<decimal> arg1,
	Nullable<decimal> arg2,
	Nullable<decimal> arg3
)

Parameters

arg1
Type: System.Nullable<Decimal>

The value for which the checksum is calculated.

arg2
Type: System.Nullable<Decimal>

The value for which the checksum is calculated.

arg3
Type: System.Nullable<Decimal>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<Double>)

Returns the checksum value computed over the input argument.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
public static Nullable<int> Checksum(
	Nullable<double> arg1
)

Parameters

arg1
Type: System.Nullable<Double>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input value.


SqlFunctions.Checksum Method (Nullable<Double>, Nullable<Double>)

Returns the checksum value computed over the input arguments.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
public static Nullable<int> Checksum(
	Nullable<double> arg1,
	Nullable<double> arg2
)

Parameters

arg1
Type: System.Nullable<Double>

The value for which the checksum is calculated.

arg2
Type: System.Nullable<Double>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<Double>, Nullable<Double>, Nullable<Double>)

Returns the checksum value computed over the input arguments.

[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg3")]
public static Nullable<int> Checksum(
	Nullable<double> arg1,
	Nullable<double> arg2,
	Nullable<double> arg3
)

Parameters

arg1
Type: System.Nullable<Double>

The value for which the checksum is calculated.

arg2
Type: System.Nullable<Double>

The value for which the checksum is calculated.

arg3
Type: System.Nullable<Double>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<Guid>)

Returns the checksum value computed over the input argument.

[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
public static Nullable<int> Checksum(
	Nullable<Guid> arg1
)

Parameters

arg1
Type: System.Nullable<Guid>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input value.


SqlFunctions.Checksum Method (Nullable<Guid>, Nullable<Guid>)

Returns the checksum value computed over the input arguments.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
public static Nullable<int> Checksum(
	Nullable<Guid> arg1,
	Nullable<Guid> arg2
)

Parameters

arg1
Type: System.Nullable<Guid>

The value for which the checksum is calculated.

arg2
Type: System.Nullable<Guid>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<Guid>, Nullable<Guid>, Nullable<Guid>)

Returns the checksum value computed over the input arguments.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg3")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
public static Nullable<int> Checksum(
	Nullable<Guid> arg1,
	Nullable<Guid> arg2,
	Nullable<Guid> arg3
)

Parameters

arg1
Type: System.Nullable<Guid>

The value for which the checksum is calculated.

arg2
Type: System.Nullable<Guid>

The value for which the checksum is calculated.

arg3
Type: System.Nullable<Guid>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<TimeSpan>)

Returns the checksum value computed over the input argument.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
public static Nullable<int> Checksum(
	Nullable<TimeSpan> arg1
)

Parameters

arg1
Type: System.Nullable<TimeSpan>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input value.


SqlFunctions.Checksum Method (Nullable<TimeSpan>, Nullable<TimeSpan>)

Returns the checksum value computed over the input arguments.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
public static Nullable<int> Checksum(
	Nullable<TimeSpan> arg1,
	Nullable<TimeSpan> arg2
)

Parameters

arg1
Type: System.Nullable<TimeSpan>

The value for which the checksum is calculated.

arg2
Type: System.Nullable<TimeSpan>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (Nullable<TimeSpan>, Nullable<TimeSpan>, Nullable<TimeSpan>)

Returns the checksum value computed over the input arguments.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg3")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
public static Nullable<int> Checksum(
	Nullable<TimeSpan> arg1,
	Nullable<TimeSpan> arg2,
	Nullable<TimeSpan> arg3
)

Parameters

arg1
Type: System.Nullable<TimeSpan>

The value for which the checksum is calculated.

arg2
Type: System.Nullable<TimeSpan>

The value for which the checksum is calculated.

arg3
Type: System.Nullable<TimeSpan>

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (String)

Returns the checksum value computed over the input argument.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
public static Nullable<int> Checksum(
	string arg1
)

Parameters

arg1
Type: System.String

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input value.


SqlFunctions.Checksum Method (String, String)

Returns the checksum value computed over the input arguments.

[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
public static Nullable<int> Checksum(
	string arg1,
	string arg2
)

Parameters

arg1
Type: System.String

The value for which the checksum is calculated.

arg2
Type: System.String

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.


SqlFunctions.Checksum Method (String, String, String)

Returns the checksum value computed over the input arguments.

[DbFunctionAttribute("SqlServer", "CHECKSUM")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg2")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg3")]
[SuppressMessageAttribute("Microsoft.Usage", "CA1801:ReviewUnusedParameters", 
	MessageId = "arg1")]
public static Nullable<int> Checksum(
	string arg1,
	string arg2,
	string arg3
)

Parameters

arg1
Type: System.String

The value for which the checksum is calculated.

arg2
Type: System.String

The value for which the checksum is calculated.

arg3
Type: System.String

The value for which the checksum is calculated.

Return Value

Type: System.Nullable<Int32>

The checksum computed over the input values.