burlapcsharp.client.CBurlapProxyFactory.CreateBurlapStandardProxy C# (CSharp) Method

CreateBurlapStandardProxy() private method

Creates proxy object using .NET - Remote proxy framework
private CreateBurlapStandardProxy ( string strUrl, Type type ) : object
strUrl string the URL where the client object is located
type System.Type the interface the proxy class needs to implement
return object
        private object CreateBurlapStandardProxy(string strUrl, Type type)
        {
            return new CBurlapProxyStandardImpl(type, this, new Uri(strUrl)).GetTransparentProxy();
            /*
            if ((m_username == null) && (m_password == null))
            {
                return new CBurlapProxyStandardImpl(type, this, new Uri(strUrl)).GetTransparentProxy();
            }
            else
            {
                return new CBurlapProxyStandardImpl(type, this, new Uri(strUrl), m_username, m_password).GetTransparentProxy();
            }
             */
        }