Alba.Jaml.MSInternal.XamlCommonFrame.TryGetNamespaceByPrefix C# (CSharp) Метод

TryGetNamespaceByPrefix() публичный Метод

public TryGetNamespaceByPrefix ( string prefix, string &xamlNs ) : bool
prefix string
xamlNs string
Результат bool
        public bool TryGetNamespaceByPrefix (string prefix, out string xamlNs)
        {
            if ((this._namespaces != null) && this._namespaces.TryGetValue(prefix, out xamlNs)) {
                return true;
            }
            xamlNs = null;
            return false;
        }