C# 클래스 Encog.Persist.Location.FilePersistence

A persistence location based on a file.
상속: IPersistenceLocation
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
CreateStream ( FileMode mode ) : Stream

Create a stream to a access the file.

Delete ( ) : void

Attempt to delete the file.

Exists ( ) : bool

Does the file exist?

FilePersistence ( String file ) : System

Construct a persistance location based on a file.

RenameTo ( IPersistenceLocation toLocation ) : void

Rename this file to a different location.

메소드 상세

CreateStream() 공개 메소드

Create a stream to a access the file.
public CreateStream ( FileMode mode ) : Stream
mode FileMode
리턴 Stream

Delete() 공개 메소드

Attempt to delete the file.
public Delete ( ) : void
리턴 void

Exists() 공개 메소드

Does the file exist?
public Exists ( ) : bool
리턴 bool

FilePersistence() 공개 메소드

Construct a persistance location based on a file.
public FilePersistence ( String file ) : System
file String The file to use.
리턴 System

RenameTo() 공개 메소드

Rename this file to a different location.
public RenameTo ( IPersistenceLocation toLocation ) : void
toLocation IPersistenceLocation What to rename to.
리턴 void