[]
Represents a collection of PictureBullet objects.
public class PictureBulletCollection : IReadOnlyList<PictureBullet>, IReadOnlyCollection<PictureBullet>, IEnumerable<PictureBullet>, IEnumerable
Gets the count of objects in this collection.
public int Count { get; }
Gets a PictureBullet by its index in the collection.
public PictureBullet this[int index] { get; }
index
intThe index in the collection.
The PictureBullet with the specified index.
Creates a new PictureBullet and adds it to the collection.
public PictureBullet Add(byte[] imageBytes, string contentType)
imageBytes
byte[]The image data representing the picture.
contentType
stringThe image data content type.
The newly created PictureBullet.
Gets a PictureBullet by its id.
public PictureBullet GetById(int id)
id
intThe PictureBullet id.
The PictureBullet with the specified id.