1
0
mirror of https://github.com/deavminet/dnetd synced 2024-09-21 17:53:39 +02:00

Added all needed stub methods for user properties

This commit is contained in:
Tristan B. Kildaire 2020-10-20 08:22:13 +02:00
parent f20a02635e
commit e39f965b17

View File

@ -813,6 +813,22 @@ public class DConnection : Thread
return ""; return "";
} }
/**
* Returns a list of proerties
*/
public string[] getProperties()
{
return [];
}
/**
* Deletes a given proerty
*/
public void deleteProperty(string propertyName)
{
/* TODO: Implement me */
}
public ConnectionType getConnectionType() public ConnectionType getConnectionType()
{ {
return connType; return connType;