C# 클래스 Hiro.ServiceInfo

Describes a service that can be created by the container.
상속: IServiceInfo
파일 보기 프로젝트 열기: philiplaureano/Hiro

공개 메소드들

메소드 설명
Equals ( object obj ) : bool

Determines if the other object is equal to the current IServiceInfo instance.

GetHashCode ( ) : int

Calculates the hash code using the service name and service type.

ServiceInfo ( System serviceType, System implementingType, string serviceName ) : System

Initializes the class with the given serviceName and serviceType.

ToString ( ) : string

메소드 상세

Equals() 공개 메소드

Determines if the other object is equal to the current IServiceInfo instance.
public Equals ( object obj ) : bool
obj object The other object that will be used in the comparison.
리턴 bool

GetHashCode() 공개 메소드

Calculates the hash code using the service name and service type.
public GetHashCode ( ) : int
리턴 int

ServiceInfo() 공개 메소드

Initializes the class with the given serviceName and serviceType.
public ServiceInfo ( System serviceType, System implementingType, string serviceName ) : System
serviceType System The type of service that can be created.
implementingType System The type that will implement the service type.
serviceName string The name of the service.
리턴 System

ToString() 공개 메소드

public ToString ( ) : string
리턴 string