C# Class Realms.Sync.PermissionChange

Inheritance: RealmObject, IPermissionObject
Exibir arquivo Open project: realm/realm-dotnet Class Usage Examples

Private Properties

Property Type Description
PermissionChange System

Public Methods

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

Initializes a new instance of the PermissionChange class.

Protected Methods

Method Description
OnPropertyChanged ( string propertyName ) : void

Private Methods

Method Description
PermissionChange ( ) : System

Method Details

OnPropertyChanged() protected method

protected OnPropertyChanged ( string propertyName ) : void
propertyName string
return void

PermissionChange() public method

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.
return System