C# 클래스 Pomona.ClientMetadata

Metadata about the generated REST client.
파일 보기 프로젝트 열기: Pomona/Pomona

공개 메소드들

메소드 설명
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