コード例 #1
0
 /// <summary>
 /// This method populates the given sink with the data from this geography instance
 /// </summary>
 /// <param name="sink">Sink to be populated</param>
 public override void Populate(Microsoft.SqlServer.Types.IGeographySink sink)
 {
     if (Location != null)
     {
         Location.Populate(sink);
     }
 }
コード例 #2
0
 /// <summary>
 /// This method populates the given sink with the data from this geography instance
 /// </summary>
 /// <param name="sink">Sink to be populated</param>
 public override void Populate(Microsoft.SqlServer.Types.IGeographySink sink)
 {
     if (Box != null)
     {
         Box.Populate(sink);
     }
 }