BondInEtwLinqpadDriver.BondDynamicDriver.GetContextConstructorParameters C# (CSharp) Method

GetContextConstructorParameters() public method

Returns names and types of parameters that should be passed into the data context constructor.
public GetContextConstructorParameters ( IConnectionInfo cxInfo ) : ParameterDescriptor[]
cxInfo IConnectionInfo Connection information, as entered by the user.
return ParameterDescriptor[]
        public override ParameterDescriptor[] GetContextConstructorParameters(IConnectionInfo cxInfo)
        {
            var parameter = new ParameterDescriptor("playback", typeof (Playback).FullName);
            return new[] { parameter };
        }