CSharpAnalytics.Protocols.Urchin.UrchinUriBuilder.GetScopeIdentity C# (CSharp) Метод

GetScopeIdentity() приватный статический Метод

Get the numeric identity of visitor and session level scopes.
private static GetScopeIdentity ( CustomVariableScope scope ) : string
scope CustomVariableScope Scope to obtain the identity of.
Результат string
        private static string GetScopeIdentity(CustomVariableScope? scope)
        {
            return !scope.HasValue || scope == CustomVariableScope.Activity
                       ? null
                       : ((int)scope).ToString(CultureInfo.InvariantCulture);
        }