SIPSorcery.AJAX.SIPDialplanLookup.CreateSIPDialplanLookup C# (CSharp) Method

CreateSIPDialplanLookup() public static method

Create a new SIPDialplanLookup object.
public static CreateSIPDialplanLookup ( global id, global lookupKey, global lookupType, global owner, global dialPlanID ) : SIPDialplanLookup
id global Initial value of the ID property.
lookupKey global Initial value of the LookupKey property.
lookupType global Initial value of the LookupType property.
owner global Initial value of the Owner property.
dialPlanID global Initial value of the DialPlanID property.
return SIPDialplanLookup
        public static SIPDialplanLookup CreateSIPDialplanLookup(global::System.String id, global::System.String lookupKey, global::System.Int32 lookupType, global::System.String owner, global::System.String dialPlanID)
        {
            SIPDialplanLookup sIPDialplanLookup = new SIPDialplanLookup();
            sIPDialplanLookup.ID = id;
            sIPDialplanLookup.LookupKey = lookupKey;
            sIPDialplanLookup.LookupType = lookupType;
            sIPDialplanLookup.Owner = owner;
            sIPDialplanLookup.DialPlanID = dialPlanID;
            return sIPDialplanLookup;
        }