Click or drag to resize

ContactInfo Class

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
This class represents contact details and display information for your software package. The information contained in this class should be sufficient to allow the user to lodge a support request and contact you.
Inheritance Hierarchy
SystemObject
  Telogis.GeoBaseContactInfo

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public class ContactInfo

The ContactInfo type exposes the following members.

Constructors
  NameDescription
Public methodContactInfo
Initializes a new instance of the ContactInfo class.
Public methodContactInfo(String, String)
Initializes a new instance of the ContactInfo class.
Public methodContactInfo(String, String, String)
Initializes a new instance of the ContactInfo class.
Public methodContactInfo(String, String, String, String)
Initializes a new instance of the ContactInfo class.
Public methodContactInfo(String, String, String, String, Boolean)
Initializes a new instance of the ContactInfo class.
Top
Properties
  NameDescription
Public propertyCode exampleCompany
Gets or sets the name of the company that created the component.
Public propertyEmail
Gets or sets an email address where support questions should be directed.
Public propertyCode exampleIncludeAssemblies
Gets or sets a value that indicates if the report window should include a list of loaded assemblies.
Public propertyCode exampleIncludeDetails
Gets or sets a value that indicates if the report window should include details about the failure.
Public propertyCode exampleIncludeSystemInfo
Gets or sets a value that indicates if the report window should include additional system information.
Public propertyCode examplePhone
Gets or sets a phone number where support is available.
Public propertyCode exampleProduct
Gets or sets the name of the product as it should appear in licensing forms.
Public propertyCode exampleShowWindow
Gets or sets a value that indicates if a window should be used to display the support info.
Public propertyUrl
Gets or sets a URL where support is available.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Examples
C#
ContactInfo myInfo = new ContactInfo("Acme Inc.", "support@acme.com", "http://www.acme.com", "555-ACME-HELP");
Console.WriteLine("Support phone number for {0} is {1}", myInfo.Company, myInfo.Phone);
// 'Support phone number for Acme Inc. is 555-ACME-HELP'
See Also