How to get the available Cameras

Hi,

You can try with this:

List<Item> items = Configuration.Instance.GetItemsByKind(Kind.Camera);
                if (items.Any())
                {
                    foreach (Item i in items)
                    {
                        EnvironmentManager.Instance.Log(false, "Log name and Id", i.Name + " : " + i.FQID.ObjectId.ToString());
}
}

This way you should get all enabled cameras.