C# 클래스 Microsoft.Silverlight.Testing.Service.ProviderBase

The base class for test service providers.
파일 보기 프로젝트 열기: garyjohnson/wpnest

공개 메소드들

메소드 설명
Initialize ( ) : void

Initializes the provider.

InvokeMethod ( string methodName ) : void

Invokes a method on this provider using reflection.

보호된 메소드들

메소드 설명
Callback ( Action action, ServiceResult result ) : void

Performs a callback. Null action and/or result are permitted.

DecrementBusyServiceCounter ( ) : void

Decrements the busy service counter.

IncrementBusyServiceCounter ( ) : void

Increments the busy service counter.

OnInitializeCompleted ( ) : void

Call the InitializeCompleted event.

ProviderBase ( TestServiceProvider provider, string displayName ) : System

Initializes a new base provider class.

메소드 상세

Callback() 보호된 정적인 메소드

Performs a callback. Null action and/or result are permitted.
protected static Callback ( Action action, ServiceResult result ) : void
action Action The optional callback action.
result ServiceResult The result to pass back.
리턴 void

DecrementBusyServiceCounter() 보호된 메소드

Decrements the busy service counter.
protected DecrementBusyServiceCounter ( ) : void
리턴 void

IncrementBusyServiceCounter() 보호된 메소드

Increments the busy service counter.
protected IncrementBusyServiceCounter ( ) : void
리턴 void

Initialize() 공개 메소드

Initializes the provider.
public Initialize ( ) : void
리턴 void

InvokeMethod() 공개 메소드

Invokes a method on this provider using reflection.
public InvokeMethod ( string methodName ) : void
methodName string The name of the method.
리턴 void

OnInitializeCompleted() 보호된 메소드

Call the InitializeCompleted event.
protected OnInitializeCompleted ( ) : void
리턴 void

ProviderBase() 보호된 메소드

Initializes a new base provider class.
protected ProviderBase ( TestServiceProvider provider, string displayName ) : System
provider TestServiceProvider The owning test service provider.
displayName string The display name of the service.
리턴 System