Determines whether propertyValue equal to testValue.

Namespace: DotNetNuke.Common
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public static void PropertyNotEqualTo<TValue>(
	string argName,
	string argProperty,
	TValue propertyValue,
	TValue testValue
)
where TValue : Object, IEquatable<TValue>
Visual Basic
Public Shared Sub PropertyNotEqualTo(Of TValue As {Object, IEquatable(Of TValue)}) ( 
	argName As String,
	argProperty As String,
	propertyValue As TValue,
	testValue As TValue
)

Parameters

argName
Type: System..::..String
Name of the arg.
argProperty
Type: System..::..String
The arg property.
propertyValue
Type: TValue
The property value.
testValue
Type: TValue
The test value.

Type Parameters

TValue
The type of the value.

Exceptions

See Also