WebCrmApiGetIpInfo Method |
Help method. Shows ticket IP address and UserHostAddress.
Namespace: dk.webCRM.ApiSync.WebServiceAssembly: dk.webCRM.ApiSync.WebService (in dk.webCRM.ApiSync.WebService.dll) Version: 2.0.0.5 (2.0.0.5)
Syntaxpublic IpAddressResult GetIpInfo()
Public Function GetIpInfo As IpAddressResult
public:
IpAddressResult^ GetIpInfo()
member GetIpInfo : unit -> IpAddressResult
Return Value
Type:
IpAddressResultReturns ticket IP address and UserHostAddress.
ExamplesTicketHeader ticket;
WebCrmApiSoapClient proxy = new WebCrmApiSoapClient();
ErrorStatus errorStatus1;
ticket = proxy.Authenticate("cm1111aaaaaa", "username", "password", out errorStatus1);
IpAddressResult ipInfo = Proxy.GetIpInfo(ticket);
See Also