C# Класс ConoHaNet.Objects.Personality

Наследование: ExtensibleJsonObject
Показать файл Открыть проект

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