C# Класс Realms.Sync.PermissionChange

Наследование: RealmObject, IPermissionObject
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание
PermissionChange System

Открытые методы

Метод Описание
PermissionChange ( string userId, string realmUrl, bool mayRead = null, bool mayWrite = null, bool mayManage = null ) : System

Initializes a new instance of the PermissionChange class.

Защищенные методы

Метод Описание
OnPropertyChanged ( string propertyName ) : void

Приватные методы

Метод Описание
PermissionChange ( ) : System

Описание методов

OnPropertyChanged() защищенный Метод

protected OnPropertyChanged ( string propertyName ) : void
propertyName string
Результат void

PermissionChange() публичный Метод

Initializes a new instance of the PermissionChange class.
public PermissionChange ( string userId, string realmUrl, bool mayRead = null, bool mayWrite = null, bool mayManage = null ) : System
userId string The user or users who should be granted these permission changes. Use * to change permissions for all users.
realmUrl string The Realm URL whose permissions settings should be changed. Use `*` to change the permissions of all Realms managed by the management Realm's .
mayRead bool Define read access. true or false to request this new value. null to keep current value.
mayWrite bool Define write access. true or false to request this new value. null to keep current value.
mayManage bool Define manage access. true or false to request this new value. null to keep current value.
Результат System