CrmTypes.CreateCustomer Method
Creates an instance of a Customer attribute.
Syntax
[Visual Basic .NET]
Public Shared Function CreateCustomer(
ByVal type As String,
ByVal value As Guid
) As Customer
[C#]
public static Customer CreateCustomer(
string type,
Guid value
);
[JScript]
public static function CreateCustomer(
type : String,
value : Guid
) : Customer;
Parameters
type
Specifies the schema name of the entity to create.
value
Specifies the value of the attribute.
Return Value
Returns a Customer type.
See Also