C# Класс Pomona.ClientMetadata

Metadata about the generated REST client.
Показать файл Открыть проект

Открытые методы

Метод Описание
With ( string assemblyName = null, string name = null, string interfaceName = null, string @namespace = null, string informationalVersion = null ) : ClientMetadata

Initializes a new instance of the ClientMetadata class, based on the current instance. Parameters with a given value will override the current value; the others will have their value from the current instance.

Защищенные методы

Метод Описание
ClientMetadata ( string assemblyName = "Client", string name = "Client", string interfaceName = "IClient", string @namespace = "Client", string informationalVersion = "1.0.0.0" ) : System

Initializes a new instance of the ClientMetadata class.

Приватные методы

Метод Описание
IsRunningOnMono ( ) : bool

Check whether we are running on Mono runtime.

ValidateIdentifiers ( CodeObject>.IEnumerable codeObjects ) : void

Описание методов

ClientMetadata() защищенный Метод

Initializes a new instance of the ClientMetadata class.
protected ClientMetadata ( string assemblyName = "Client", string name = "Client", string interfaceName = "IClient", string @namespace = "Client", string informationalVersion = "1.0.0.0" ) : System
assemblyName string The name of the generated assembly. Default set to "Client".
name string The name of the REST client class.
interfaceName string The name of the REST client interface. This should usually be /// identical to , with an 'I' prefix. Default set to "IClient".
@namespace string
informationalVersion string The informational version of the generated assembly. Defaults to 1.0.0.0.
Результат System

With() публичный Метод

Initializes a new instance of the ClientMetadata class, based on the current instance. Parameters with a given value will override the current value; the others will have their value from the current instance.
public With ( string assemblyName = null, string name = null, string interfaceName = null, string @namespace = null, string informationalVersion = null ) : ClientMetadata
assemblyName string The name of the generated assembly. Default set to "Client".
name string The name of the REST client class.
interfaceName string The name of the REST client interface. This should usually be /// identical to , with an 'I' prefix. Default set to "IClient".
@namespace string
informationalVersion string The informational version of the generated assembly. Defaults to 1.0.0.0.
Результат ClientMetadata