strICT.InFlow.WFM.Utilities.InFlowWFM.InFlowWFM C# (CSharp) Method

InFlowWFM() public method

constructor
public InFlowWFM ( string wfmBaseAddress, string wfmUsername, string wfmPassword, string sqlConnectionString ) : Microsoft.Activities.Messaging
wfmBaseAddress string
wfmUsername string
wfmPassword string
sqlConnectionString string
return Microsoft.Activities.Messaging
        public InFlowWFM(string wfmBaseAddress, string wfmUsername, string wfmPassword, string sqlConnectionString)
        {
            this.cfgWFMBaseAddress = wfmBaseAddress;
            this.cfgWFMUsername = wfmUsername;
            this.cfgWFMPassword = wfmPassword;
            this.cfgSQLConnectionString = sqlConnectionString;

            this.credentials = new System.Net.NetworkCredential(wfmUsername, wfmPassword);
        }