[pgsqlclient-checkins] pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgTypes PgBox.cs,1.8,1.9 Pg
Status: Inactive
Brought to you by:
carlosga_fb
Update of /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgTypes In directory sc8-pr-cvs1:/tmp/cvs-serv26336 Modified Files: PgBox.cs PgCircle.cs PgLine.cs PgLSeg.cs PgPath.cs PgPoint.cs PgPolygon.cs Log Message: Added new Parse method Index: PgBox.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgTypes/PgBox.cs,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** PgBox.cs 18 Dec 2003 11:47:05 -0000 1.8 --- PgBox.cs 3 Jan 2004 15:44:10 -0000 1.9 *************** *** 121,124 **** --- 121,133 ---- #endregion + + #region Static Methods + + public static PgBox Parse(string s) + { + throw new NotSupportedException(); + } + + #endregion } } Index: PgCircle.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgTypes/PgCircle.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PgCircle.cs 18 Dec 2003 11:47:05 -0000 1.6 --- PgCircle.cs 3 Jan 2004 15:44:10 -0000 1.7 *************** *** 118,121 **** --- 118,130 ---- #endregion + + #region Static Methods + + public static PgCircle Parse(string s) + { + throw new NotSupportedException(); + } + + #endregion } } Index: PgLine.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgTypes/PgLine.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PgLine.cs 18 Dec 2003 11:47:05 -0000 1.6 --- PgLine.cs 3 Jan 2004 15:44:10 -0000 1.7 *************** *** 121,124 **** --- 121,133 ---- #endregion + + #region Static Methods + + public static PgLine Parse(string s) + { + throw new NotSupportedException(); + } + + #endregion } } Index: PgLSeg.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgTypes/PgLSeg.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PgLSeg.cs 18 Dec 2003 11:47:05 -0000 1.7 --- PgLSeg.cs 3 Jan 2004 15:44:10 -0000 1.8 *************** *** 121,124 **** --- 121,133 ---- #endregion + + #region Static Methods + + public static PgLSeg Parse(string s) + { + throw new NotSupportedException(); + } + + #endregion } } Index: PgPath.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgTypes/PgPath.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PgPath.cs 18 Dec 2003 11:47:05 -0000 1.6 --- PgPath.cs 3 Jan 2004 15:44:10 -0000 1.7 *************** *** 139,142 **** --- 139,151 ---- #endregion + + #region Static Methods + + public static PgPath Parse(string s) + { + throw new NotSupportedException(); + } + + #endregion } } Index: PgPoint.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgTypes/PgPoint.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PgPoint.cs 18 Dec 2003 11:47:05 -0000 1.6 --- PgPoint.cs 3 Jan 2004 15:44:10 -0000 1.7 *************** *** 111,114 **** --- 111,123 ---- #endregion + + #region Static Methods + + public static PgPoint Parse(string s) + { + throw new NotSupportedException(); + } + + #endregion } } Index: PgPolygon.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient_10/PostgreSql.Data.PgSqlClient/source/PgTypes/PgPolygon.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PgPolygon.cs 18 Dec 2003 11:47:05 -0000 1.7 --- PgPolygon.cs 3 Jan 2004 15:44:10 -0000 1.8 *************** *** 132,135 **** --- 132,144 ---- #endregion + + #region Static Methods + + public static PgPolygon Parse(string s) + { + throw new NotSupportedException(); + } + + #endregion } } |