C# 클래스 PathLib.PathFactory

Creates IPurePath implementations depending on the current platform.
파일 보기 프로젝트 열기: nemec/pathlib

공개 메소드들

메소드 설명
Create ( ) : IPath

Factory method to create a new PurePath instance based upon the current operating system.

Create ( PathFactoryOptions options ) : IPath

Factory method to create a new PurePath instance based upon the current operating system.

Create ( string path ) : IPath

Factory method to create a new PurePath instance based upon the current operating system.

Create ( string path, PathFactoryOptions options ) : IPath

Factory method to create a new PurePath instance based upon the current operating system.

TryCreate ( PathFactoryOptions options, string path, IPath &result ) : bool

Factory method to create a new PurePath instance based upon the current operating system.

TryCreate ( string path, IPath &result ) : bool

Factory method to create a new PurePath instance based upon the current operating system.

비공개 메소드들

메소드 설명
ApplyOptions ( IPath path, PathFactoryOptions options ) : IPath

메소드 상세

Create() 공개 메소드

Factory method to create a new PurePath instance based upon the current operating system.
public Create ( ) : IPath
리턴 IPath

Create() 공개 메소드

Factory method to create a new PurePath instance based upon the current operating system.
public Create ( PathFactoryOptions options ) : IPath
options PathFactoryOptions
리턴 IPath

Create() 공개 메소드

Factory method to create a new PurePath instance based upon the current operating system.
public Create ( string path ) : IPath
path string
리턴 IPath

Create() 공개 메소드

Factory method to create a new PurePath instance based upon the current operating system.
public Create ( string path, PathFactoryOptions options ) : IPath
path string
options PathFactoryOptions
리턴 IPath

TryCreate() 공개 메소드

Factory method to create a new PurePath instance based upon the current operating system.
public TryCreate ( PathFactoryOptions options, string path, IPath &result ) : bool
options PathFactoryOptions
path string
result IPath
리턴 bool

TryCreate() 공개 메소드

Factory method to create a new PurePath instance based upon the current operating system.
public TryCreate ( string path, IPath &result ) : bool
path string
result IPath
리턴 bool