Skip to content

Configure Online License Transactions on Mobile

Explore detailed information about tags, tenants, and environments on the Online License Transactions page.

To set a tag:

DocReader.shared.tag = "6f9619ff-8b86-d011-b42d-00cf4fc964ff"
[RGLDocReader shared].tag = @"6f9619ff-8b86-d011-b42d-00cf4fc964ff";
DocumentReader.Instance().tag = "6f9619ff-8b86-d011-b42d-00cf4fc964ff"
DocumentReader.Instance().tag = "6f9619ff-8b86-d011-b42d-00cf4fc964ff";
DocumentReader.instance.tag = "6f9619ff-8b86-d011-b42d-00cf4fc964ff";
DocumentReader.setTag("6f9619ff-8b86-d011-b42d-00cf4fc964ff", _ => { }, _ => { })
DocumentReader.setTag("6f9619ff-8b86-d011-b42d-00cf4fc964ff")
DocumentReader.setTag("6f9619ff-8b86-d011-b42d-00cf4fc964ff", function (m) { }, function (e) { })
// Android
DocumentReader.Instance().Tag = "6f9619ff-8b86-d011-b42d-00cf4fc964ff";

// iOS
RGLDocReader.Shared.Tag = "6f9619ff-8b86-d011-b42d-00cf4fc964ff";

To set a tenant:

DocReader.shared.tenant = "ABCDEF"
[RGLDocReader shared].tenant = @"ABCDEF";
DocumentReader.Instance().tenant = "ABCDEF"
DocumentReader.Instance().tenant = "ABCDEF";
DocumentReader.instance.tenant = "ABCDEF";
DocumentReader.setTenant("ABCDEF", _ => { }, _ => { })
DocumentReader.setTenant("ABCDEF")
DocumentReader.setTenant("ABCDEF", function (m) { }, function (e) { })
// Android
DocumentReader.Instance().Tenant = "ABCDEF";

// iOS
RGLDocReader.Shared.Tenant = "ABCDEF";

To set an environment:

DocReader.shared.env = "Production"
[RGLDocReader shared].env = @"Production";
DocumentReader.Instance().env = "Production"
DocumentReader.Instance().env = "Production";
DocumentReader.instance.env = "Production";
DocumentReader.setEnv("Production", _ => { }, _ => { })
DocumentReader.setEnv("Production")
DocumentReader.setEnv("Production", function (m) { }, function (e) { })
// Android
DocumentReader.Instance().Env = "Production";

// iOS
RGLDocReader.Shared.Env = "Production";

Next Steps