Unity3dAzure.AppServices.CustomQuery.SystemPropertiesValues C# (CSharp) Method

SystemPropertiesValues() private method

private SystemPropertiesValues ( MobileServiceSystemProperty systemProperties ) : string
systemProperties MobileServiceSystemProperty
return string
        private string SystemPropertiesValues(MobileServiceSystemProperty systemProperties)
        {
            if (systemProperties == MobileServiceSystemProperty.nil) {
                return "";
            }
            return systemProperties.ToString ().Replace (" ", ""); // remove spaces from string
        }