Alba.Jaml.MSInternal.XamlCommonFrame.GetNamespacePrefixes C# (CSharp) Method

GetNamespacePrefixes() public method

public GetNamespacePrefixes ( ) : IEnumerable
return IEnumerable
        public IEnumerable<NamespaceDeclaration> GetNamespacePrefixes ()
        {
            List<NamespaceDeclaration> list = new List<NamespaceDeclaration>();
            foreach (KeyValuePair<string, string> pair in this._namespaces) {
                list.Add(new NamespaceDeclaration(pair.Value, pair.Key));
            }
            return list;
        }