CrmReference.IsNullSpecified Field

banner art

Specifies whether you are intentionally setting the attribute to a null value.

Syntax

[Visual Basic]
Public Field IsNullSpecified As Boolean

[C#]
public bool IsNullSpecified;

[JScript]
public var IsNullSpecified : Boolean;

Remarks

To set an attribute to a null value you must set both the IsNull and IsNullSpecified fields to True.

Example

The following example shows how to set the attribute to a null value.

CrmReference num = new CrmReference();
num.IsNull = true;
num.IsNullSpecified = true;

See Also

© 2007 Microsoft Corporation. All rights reserved.