C# 클래스 Realms.Sync.PermissionChange

상속: RealmObject, IPermissionObject
파일 보기 프로젝트 열기: realm/realm-dotnet 1 사용 예제들

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