Class calltype
Class that contains information about a call.
Inherited Members
Namespace: I3SubNot
Assembly: Ng911Lib.dll
Syntax
[Serializable]
public class calltype
  Fields
| Edit this page View SourceAny
Extension point for elements.
Declaration
public List<XmlElement> Any
  Field Value
| Type | Description | 
|---|---|
| List<XmlElement> | 
AnyAttr
Attribute extension point.
Declaration
public List<XmlAttribute> AnyAttr
  Field Value
| Type | Description | 
|---|---|
| List<XmlAttribute> | 
sip
Contains information about the SIP dialog.
Declaration
public sipdialogidtype sip
  Field Value
| Type | Description | 
|---|---|
| sipdialogidtype | 
Remarks
The XSD in the file called ConferenceEvent.xsd is incorrect in the definition of the call-type at line 246 because it has the sip element wrapped in a xs:choice element with an xs:any element. I believe that this was not the intent. The code that was generated as a result of this error is as follows:
[System.Xml.Serialization.XmlAnyElementAttribute()]
[System.Xml.Serialization.XmlElementAttribute("sip",
typeof(sipdialogidtype))]
public object Item;
The code for the sip element and the Any element of this class has
been modified by hand to correct the error in the XSD code.