Google.Maps.BaseSigningService.GetSigningInstance C# (CSharp) Method

GetSigningInstance() protected method

protected GetSigningInstance ( ) : GoogleSigned
return GoogleSigned
        protected GoogleSigned GetSigningInstance()
        {
            GoogleSigned instance;

            if(S_SigningInstances.TryGetValue(this.GetType(), out instance) == false)
                return null;
            else
                return instance;
        }