SIPSorcery.Entities.WebCallback.CreateWebCallback C# (CSharp) Метод

CreateWebCallback() публичный статический Метод

Create a new WebCallback object.
public static CreateWebCallback ( global id, global owner, global dialString1, global dialString2, global inserted ) : WebCallback
id global Initial value of the ID property.
owner global Initial value of the Owner property.
dialString1 global Initial value of the DialString1 property.
dialString2 global Initial value of the DialString2 property.
inserted global Initial value of the Inserted property.
Результат WebCallback
        public static WebCallback CreateWebCallback(global::System.String id, global::System.String owner, global::System.String dialString1, global::System.String dialString2, global::System.String inserted)
        {
            WebCallback webCallback = new WebCallback();
            webCallback.ID = id;
            webCallback.Owner = owner;
            webCallback.DialString1 = dialString1;
            webCallback.DialString2 = dialString2;
            webCallback.Inserted = inserted;
            return webCallback;
        }