/// <summary> /// Create a new LogEntry object. /// </summary> /// <param name="ID">Initial value of Id.</param> /// <param name="verb">Initial value of Verb.</param> /// <param name="uRI">Initial value of URI.</param> public static LogEntry CreateLogEntry(int ID, string verb, string uRI) { LogEntry logEntry = new LogEntry(); logEntry.Id = ID; logEntry.Verb = verb; logEntry.URI = uRI; return logEntry; }
/// <summary> /// There are no comments for LogEntries in the schema. /// </summary> public void AddToLogEntries(LogEntry logEntry) { base.AddObject("LogEntries", logEntry); }