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

Allow create, update, get, delete weblink for folder.
상속: BoxResourceManager
파일 보기 프로젝트 열기: box/box-windows-sdk-v2 1 사용 예제들

공개 메소드들

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

Creates a web link object within a given folder.

DeleteWebLinkAsync ( string webLinkId ) : Task

Deletes a web link and moves it to the trash.

GetWebLinkAsync ( string webLinkId ) : Task

Use to get information about the web link.

UpdateWebLinkAsync ( string webLinkId, BoxWebLinkRequest updateWebLinkRequest ) : Task

Updates information for a web link.

메소드 상세

BoxWebLinksManager() 공개 메소드

public BoxWebLinksManager ( 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

CreateWebLinkAsync() 공개 메소드

Creates a web link object within a given folder.
public CreateWebLinkAsync ( BoxWebLinkRequest createWebLinkRequest ) : Task
createWebLinkRequest Box.V2.Models.BoxWebLinkRequest BoxWebLinkRequest object
리턴 Task

DeleteWebLinkAsync() 공개 메소드

Deletes a web link and moves it to the trash.
public DeleteWebLinkAsync ( string webLinkId ) : Task
webLinkId string Id of the weblink.
리턴 Task

GetWebLinkAsync() 공개 메소드

Use to get information about the web link.
public GetWebLinkAsync ( string webLinkId ) : Task
webLinkId string Id of the weblink.
리턴 Task

UpdateWebLinkAsync() 공개 메소드

Updates information for a web link.
public UpdateWebLinkAsync ( string webLinkId, BoxWebLinkRequest updateWebLinkRequest ) : Task
webLinkId string Id of the weblink.
updateWebLinkRequest Box.V2.Models.BoxWebLinkRequest BoxWebLinkRequest object
리턴 Task