/// <summary>
 /// Initializes a new instance of the <see cref="CustomCallHandlerData"/> class by using the specified handler name, type name, and handler order.
 /// </summary>
 /// <param name="name">The name of the handler instance.</param>
 /// <param name="typeName">The name of the type of handler to configure.</param>
 /// <param name="handlerOrder">The order of the handler type to configure.</param>
 public CustomCallHandlerData(string name, string typeName, int handlerOrder)
 {
     helper     = new CustomProviderDataHelper <CustomCallHandlerData>(this);
     Name       = name;
     TypeName   = typeName;
     this.Order = handlerOrder;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="CustomCallHandlerData"/> class by using the specified handler name and type name.
 /// </summary>
 /// <param name="name">The name of the handler instance.</param>
 /// <param name="typeName">The name of the type of handler to configure.</param>
 public CustomCallHandlerData(string name, string typeName)
 {
     helper   = new CustomProviderDataHelper <CustomCallHandlerData>(this);
     Name     = name;
     TypeName = typeName;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="CustomCallHandlerData"/> class.
 /// </summary>
 public CustomCallHandlerData()
 {
     helper = new CustomProviderDataHelper <CustomCallHandlerData>(this);
 }