Ejemplo n.º 1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public void marshal(DatabaseName databaseName, org.neo4j.storageengine.api.WritableChannel channel) throws java.io.IOException
//JAVA TO C# CONVERTER NOTE: Members cannot have the same name as their enclosing type:
            public override void MarshalConflict(DatabaseName databaseName, WritableChannel channel)
            {
                StringMarshal.marshal(channel, databaseName.Name());
            }
Ejemplo n.º 2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: protected DatabaseName unmarshal0(org.neo4j.storageengine.api.ReadableChannel channel) throws java.io.IOException
            protected internal override DatabaseName Unmarshal0(ReadableChannel channel)
            {
                return(new DatabaseName(StringMarshal.unmarshal(channel)));
            }