C# 클래스 SimpleDeployNet.Core.MsDeployFileService

상속: IMsDeployFileService
파일 보기 프로젝트 열기: dougrathbone/simpledeploynet 1 사용 예제들

공개 메소드들

메소드 설명
DeleteFile ( ConnectionProperties properties, string relativeRemoteFileName ) : bool

Deletes the file.

DownloadFile ( ConnectionProperties properties, string relativeRemoteFileName, string fullLocalFilePathToSave ) : bool

Downloads a remote file.

FetchFileList ( ConnectionProperties properties ) : DeploymentObjectList

Fetches the remote servers file list.

UploadFile ( ConnectionProperties properties, string relativeDestinationFileName, string fullLocalFilePath ) : bool

Uploads a file to the remote host.

비공개 메소드들

메소드 설명
BuildMsDeployUri ( ConnectionProperties properties ) : Uri
GetDeploymentObjectAsXmlDocument ( DeploymentObject obj ) : XmlDocument
WriteXmlObject ( DeploymentObject obj, XmlTextWriter writer ) : void

메소드 상세

DeleteFile() 공개 메소드

Deletes the file.
Connection properties cannot be null.;properties
public DeleteFile ( ConnectionProperties properties, string relativeRemoteFileName ) : bool
properties ConnectionProperties The properties.
relativeRemoteFileName string Name of the relative remote file.
리턴 bool

DownloadFile() 공개 메소드

Downloads a remote file.
Connection properties cannot be null.;properties
public DownloadFile ( ConnectionProperties properties, string relativeRemoteFileName, string fullLocalFilePathToSave ) : bool
properties ConnectionProperties The properties.
relativeRemoteFileName string Name of the relative remote file.
fullLocalFilePathToSave string The full local file path to save.
리턴 bool

FetchFileList() 공개 메소드

Fetches the remote servers file list.
Connection properties cannot be null.;properties
public FetchFileList ( ConnectionProperties properties ) : DeploymentObjectList
properties ConnectionProperties The properties.
리턴 DeploymentObjectList

UploadFile() 공개 메소드

Uploads a file to the remote host.
Connection properties cannot be null.;properties
public UploadFile ( ConnectionProperties properties, string relativeDestinationFileName, string fullLocalFilePath ) : bool
properties ConnectionProperties The properties.
relativeDestinationFileName string Name of the relative destination file.
fullLocalFilePath string The full local file path.
리턴 bool