예제 #1
0
 /// <summary>
 /// Creates a new XDS Slot object with the given name and values.
 /// </summary>
 /// <param name="name">name of the slot</param>
 /// <param name="values">values to include in the slot object</param>
 /// <returns>Returns the new SlotType object</returns>
 public SlotType(SlotNameType name, string[] values)
 {
     this.Name            = name;
     this.ValueList       = new ValueListType();
     this.ValueList.Value = values;
 }
예제 #2
0
파일: SlotType.cs 프로젝트: DM-TOR/nhin-d
 /// <summary>
 /// Creates a new XDS Slot object with the given name and values.
 /// </summary>
 /// <param name="name">name of the slot</param>
 /// <param name="values">values to include in the slot object</param>
 /// <returns>Returns the new SlotType object</returns>
 public SlotType(SlotNameType name, string[] values)
 {
     this.Name = name;
     this.ValueList = new ValueListType();
     this.ValueList.Value = values;
 }
예제 #3
0
        /// <summary>
        /// Creates a new XDS Slot object with the given name and values.
        /// </summary>
        /// <param name="name">name of the slot</param>
        /// <param name="values">values to include in the slot object</param>
        /// <returns>Returns the new SlotType object</returns>
        public static SlotType CreateSlot(SlotNameType name, string[] values)
        {
            SlotType slot = new SlotType(name, values);

            return(slot);
        }
예제 #4
0
파일: SlotType.cs 프로젝트: DM-TOR/nhin-d
 /// <summary>
 /// Creates a new XDS Slot object with the given name and values.
 /// </summary>
 /// <param name="name">name of the slot</param>
 /// <param name="values">values to include in the slot object</param>
 /// <returns>Returns the new SlotType object</returns>
 public static SlotType CreateSlot(SlotNameType name, string[] values)
 {
     SlotType slot = new SlotType(name, values);
     return slot;
 }