SIPSorcery.AJAX.SIPDialplanOption.CreateSIPDialplanOption C# (CSharp) Method

CreateSIPDialplanOption() public static method

Create a new SIPDialplanOption object.
public static CreateSIPDialplanOption ( global id, global owner, global enableSafeguards, global dialPlanID ) : SIPDialplanOption
id global Initial value of the ID property.
owner global Initial value of the Owner property.
enableSafeguards global Initial value of the EnableSafeguards property.
dialPlanID global Initial value of the DialPlanID property.
return SIPDialplanOption
        public static SIPDialplanOption CreateSIPDialplanOption(global::System.String id, global::System.String owner, global::System.Boolean enableSafeguards, global::System.String dialPlanID)
        {
            SIPDialplanOption sIPDialplanOption = new SIPDialplanOption();
            sIPDialplanOption.ID = id;
            sIPDialplanOption.Owner = owner;
            sIPDialplanOption.EnableSafeguards = enableSafeguards;
            sIPDialplanOption.DialPlanID = dialPlanID;
            return sIPDialplanOption;
        }