Ejemplo n.º 1
0
        public Item(DBusWrapper dbus, Collection collection, string uuid)
        {
            ObjectPath = new ObjectPath(collection.ObjectPath + $"/{uuid}");
            _dbus      = dbus;

            RegisterSelf();
        }
Ejemplo n.º 2
0
        internal Collection(DBusWrapper dbus, string uuid)
        {
            _dbus      = dbus;
            ObjectPath = new ObjectPath($"/org/freedesktop/secrets/collection/{uuid}");

            RegisterSelf();
        }
Ejemplo n.º 3
0
        public Session(DBusWrapper dbus)
        {
            _dbus = dbus;

            var rand = new Random();
            var id   = rand.Next();

            ObjectPath = $"/org/freedesktop/secrets/session/{id}";
        }
Ejemplo n.º 4
0
 internal SecretService(DBusWrapper dBus)
 {
     _dBus = dBus;
 }