public override string[] GetPropertyStringList(string key)
 {
     return(UdevMetadata.GetPropertyStringList(key));
 }
 public override bool PropertyExists(string key)
 {
     return(UdevMetadata.PropertyExists(key));
 }
 public override ulong GetPropertyUInt64(string key)
 {
     return(UdevMetadata.GetPropertyUInt64(key));
 }
 public override int GetPropertyInteger(string key)
 {
     return(UdevMetadata.GetPropertyInteger(key));
 }
 public override bool GetPropertyBoolean(string key)
 {
     return(UdevMetadata.GetPropertyBoolean(key));
 }
 public override double GetPropertyDouble(string key)
 {
     return(UdevMetadata.GetPropertyDouble(key));
 }
 public override string GetPropertyString(string key)
 {
     return(UdevMetadata.GetPropertyString(key));
 }