Initializes a new instance of the Appointment class with the specified key.

Namespace:  C1.C1Schedule
Assembly:  C1.Silverlight.Schedule (in C1.Silverlight.Schedule.dll)

Syntax

C#
public Appointment(
	Guid key
)
Visual Basic
Public Sub New ( _
	key As Guid _
)

Parameters

key
Type: System..::..Guid
The Guid value which should be used as appointment key.

Remarks

Use this constructor if your business logic requires setting custom key value. Make sure that you use the correct constructor overload (with integer or Guid key value) and that key value is unique.

See Also