C# 클래스 HCS_Encoder.TransferAgent

파일 보기 프로젝트 열기: i-e-b/HLS---Smooth-Encoder 1 사용 예제들

공개 메소드들

메소드 설명
Transfer ( Uri From ) : Stream

Transfer from a source Uri stream to destination Stream. Uris may contain username and password information -- this will be used to make the connection.

Transfer ( Stream From, Uri To ) : void

Transfer from a source data stream to destination Uri. Uris need not be the same type or on the same server. Uris may contain username and password information -- this will be used to make the connection. Destination files will be overwritten if needed and possible.

Transfer ( Uri From, Uri To ) : void

Transfer from a source Uri to a destination Uri. Uris need not be the same type or on the same server. Uris may contain username and password information -- this will be used to make the connection. Destination files will be overwritten if needed and possible.

This method DOES NOT try to create missing directories. All of the directories in the destination path should exist and have proper permissions.

메소드 상세

Transfer() 공개 정적인 메소드

Transfer from a source Uri stream to destination Stream. Uris may contain username and password information -- this will be used to make the connection.
public static Transfer ( Uri From ) : Stream
From System.Uri Source data stream
리턴 Stream

Transfer() 공개 정적인 메소드

Transfer from a source data stream to destination Uri. Uris need not be the same type or on the same server. Uris may contain username and password information -- this will be used to make the connection. Destination files will be overwritten if needed and possible.
public static Transfer ( Stream From, Uri To ) : void
From Stream Source data stream
To System.Uri Destination Uri. Should resolve to a file.
리턴 void

Transfer() 공개 정적인 메소드

Transfer from a source Uri to a destination Uri. Uris need not be the same type or on the same server. Uris may contain username and password information -- this will be used to make the connection. Destination files will be overwritten if needed and possible.
This method DOES NOT try to create missing directories. All of the directories in the destination path should exist and have proper permissions.
public static Transfer ( Uri From, Uri To ) : void
From System.Uri Source Uri. Should resolve to a file.
To System.Uri Destination Uri. Should resolve to a file.
리턴 void