C# Class ConoHaNet.Objects.Personality

Inheritance: ExtensibleJsonObject
Exibir arquivo Open project: crowdy/OpenStack-ConoHa

Private Properties

Property Type Description
Personality System

Public Methods

Method Description
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.

Private Methods

Method Description
Personality ( ) : System

Method Details

Personality() public method

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.
return System

Personality() public method

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.
return System

Personality() public method

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.
return System