C# 클래스 ConoHaNet.Objects.Personality

상속: ExtensibleJsonObject
파일 보기 프로젝트 열기: crowdy/OpenStack-ConoHa

Private Properties

프로퍼티 타입 설명
Personality System

공개 메소드들

메소드 설명
Personality ( string path, byte content ) : System

Initializes a new instance of the Personality class with the specified path and contents.

Personality ( string path, string content ) : System

Initializes a new instance of the Personality class with the specified path and text content, using Encoding.UTF8 for the content encoding.

Personality ( string path, string content, Encoding encoding ) : System

Initializes a new instance of the Personality class with the specified path, text content, and context encoding.

비공개 메소드들

메소드 설명
Personality ( ) : System

메소드 상세

Personality() 공개 메소드

Initializes a new instance of the Personality class with the specified path and contents.
/// If is . /// -or- /// If is . /// If is empty.
public Personality ( string path, byte content ) : System
path string The path of the file to create on the target file system.
content byte The contents of the file to create on the target file system.
리턴 System

Personality() 공개 메소드

Initializes a new instance of the Personality class with the specified path and text content, using Encoding.UTF8 for the content encoding.
/// If is . /// -or- /// If is . /// If is empty.
public Personality ( string path, string content ) : System
path string The path of the text file to create on the target file system.
content string The contents of the text file to create on the target file system.
리턴 System

Personality() 공개 메소드

Initializes a new instance of the Personality class with the specified path, text content, and context encoding.
/// If is . /// -or- /// If is . /// -or- /// If is . /// If is empty.
public Personality ( string path, string content, Encoding encoding ) : System
path string The path of the text file to create on the target file system.
content string The contents of the text file to create on the target file system.
encoding System.Text.Encoding The encoding to use for the text file.
리턴 System