Inheritance: BizTalkBaseObject
コード例 #1
0
        internal static void SetReferences(ReceiveLocation receiveLocation, Pipeline receivePipeline, Pipeline sendPipeline)
        {
            //receiveLocation.ReceiveHandler = new ReceiveHandler(); //new ReceiveHandler().Map(omReceiveLocation.ReceiveHandler);

            receiveLocation.ReceivePipeline = receivePipeline;
            receiveLocation.SendPipeline = sendPipeline;
        }
コード例 #2
0
        internal static ReceiveLocation TransforModel(Microsoft.BizTalk.ExplorerOM.ReceiveLocation omReceiveLocation)
        {
            var receiveLocation = new ReceiveLocation();

            receiveLocation.Name = omReceiveLocation.Name;
            receiveLocation.Address = omReceiveLocation.Address;
            receiveLocation.TransportProtocol = omReceiveLocation.TransportType.Name;

            return receiveLocation;
        }