C# 클래스 Box.V2.Managers.BoxDevicePinManager

상속: BoxResourceManager
파일 보기 프로젝트 열기: box/box-windows-sdk-v2

공개 메소드들

메소드 설명
BoxDevicePinManager ( IBoxConfig config, IBoxService service, IBoxConverter converter, IAuthRepository auth, string asUser = null, bool suppressNotifications = null ) : Box.V2.Auth
DeleteDevicePin ( string id ) : Task

Delete individual device pin.

GetDevicePin ( string id ) : Task

Gets information about an individual device pin.

GetEnterpriseDevicePinsAsync ( string enterpriseId, string marker = null, int limit = 100, BoxSortDirection direction = BoxSortDirection.ASC, bool autoPaginate = false ) : Task>

Gets all the device pins within a given enterprise. Must be an enterprise admin with the manage enterprise scope to make this call.

메소드 상세

BoxDevicePinManager() 공개 메소드

public BoxDevicePinManager ( IBoxConfig config, IBoxService service, IBoxConverter converter, IAuthRepository auth, string asUser = null, bool suppressNotifications = null ) : Box.V2.Auth
config IBoxConfig
service IBoxService
converter IBoxConverter
auth IAuthRepository
asUser string
suppressNotifications bool
리턴 Box.V2.Auth

DeleteDevicePin() 공개 메소드

Delete individual device pin.
public DeleteDevicePin ( string id ) : Task
id string Device pin id.
리턴 Task

GetDevicePin() 공개 메소드

Gets information about an individual device pin.
public GetDevicePin ( string id ) : Task
id string Device pin id.
리턴 Task

GetEnterpriseDevicePinsAsync() 공개 메소드

Gets all the device pins within a given enterprise. Must be an enterprise admin with the manage enterprise scope to make this call.
public GetEnterpriseDevicePinsAsync ( string enterpriseId, string marker = null, int limit = 100, BoxSortDirection direction = BoxSortDirection.ASC, bool autoPaginate = false ) : Task>
enterpriseId string Box enterprise id.
marker string Needs not be passed or can be empty for first invocation of the API. Use the one returned in response for each subsequent call.
limit int Default value is 100. Max value is 10000.
direction BoxSortDirection Default is "asc". Valid values are asc, desc. Case in-sensitive, ASC/DESC works just fine.
autoPaginate bool Whether or not to auto-paginate to fetch all items; defaults to false.
리턴 Task>