/// <summary> /// Deprecated Method for adding a new object to the SystemObjects EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToSystemObjects(SystemObject systemObject) { base.AddObject("SystemObjects", systemObject); }
/// <summary> /// Create a new SystemObject object. /// </summary> /// <param name="systemObjectID">Initial value of the SystemObjectID property.</param> /// <param name="name">Initial value of the Name property.</param> /// <param name="timestamp">Initial value of the Timestamp property.</param> public static SystemObject CreateSystemObject(global::System.Int32 systemObjectID, global::System.String name, global::System.Byte[] timestamp) { SystemObject systemObject = new SystemObject(); systemObject.SystemObjectID = systemObjectID; systemObject.Name = name; systemObject.Timestamp = timestamp; return systemObject; }