本文整理汇总了C#中IGroup.GetType方法的典型用法代码示例。如果您正苦于以下问题:C# IGroup.GetType方法的具体用法?C# IGroup.GetType怎么用?C# IGroup.GetType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IGroup
的用法示例。
在下文中一共展示了IGroup.GetType方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Encode
/// <summary> Copies data from a group object into the corresponding group element, creating any
/// necessary child nodes.
/// </summary>
private void Encode(IGroup groupObject, System.Xml.XmlElement groupElement)
{
System.String[] childNames = groupObject.Names;
System.String messageName = groupObject.Message.GetStructureName();
try
{
for (int i = 0; i < childNames.Length; i++)
{
IStructure[] reps = groupObject.GetAll(childNames[i]);
for (int j = 0; j < reps.Length; j++)
{
System.Xml.XmlElement childElement = groupElement.OwnerDocument.CreateElement(MakeGroupElementName(messageName, childNames[i]));
bool hasValue = false;
if (reps[j] is IGroup)
{
hasValue = true;
Encode((IGroup)reps[j], childElement);
}
else if (reps[j] is ISegment)
{
hasValue = Encode((ISegment)reps[j], childElement);
}
if (hasValue)
{
groupElement.AppendChild(childElement);
}
}
}
}
catch (System.Exception e)
{
throw new HL7Exception("Can't encode group " + groupObject.GetType().FullName, HL7Exception.APPLICATION_INTERNAL_ERROR, e);
}
}