C# Class Realms.Sync.PermissionChange

Inheritance: RealmObject, IPermissionObject
Afficher le fichier Open project: realm/realm-dotnet Class Usage Examples

Private Properties

Свойство Type Description
PermissionChange System

Méthodes publiques

Méthode Description
PermissionChange ( string userId, string realmUrl, bool mayRead = null, bool mayWrite = null, bool mayManage = null ) : System

Initializes a new instance of the PermissionChange class.

Méthodes protégées

Méthode Description
OnPropertyChanged ( string propertyName ) : void

Private Methods

Méthode Description
PermissionChange ( ) : System

Method Details

OnPropertyChanged() protected méthode

protected OnPropertyChanged ( string propertyName ) : void
propertyName string
Résultat void

PermissionChange() public méthode

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.
Résultat System