Shapefile.Shape.GetMetadata C# (CSharp) Метод

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

Gets the metadata (as a string) for a given name (key). Valid names for this shape can be retrieved by calling GetMetadataNames().
public GetMetadata ( string name ) : string
name string The name to retreieve
Результат string
        public string GetMetadata(string name)
        {
            if ((_metadata != null) && (_metadata.ContainsKey(name)))
            {
                return _metadata[name];
            }
            else
            {
                return null;
            }
        }