Abstract base class for card services.

Namespace: BasicCard.GenericCards
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
[CLSCompliantAttribute(true)]
public class AbstractCardService : MarshalByRefObject, 
	ICardService, IDisposable
Visual Basic
<CLSCompliantAttribute(true)>
Public Class AbstractCardService
	Inherits MarshalByRefObject
	Implements ICardService, IDisposable
Visual C++
[CLSCompliantAttribute(true)]
public ref class AbstractCardService : public MarshalByRefObject, 
	ICardService, IDisposable
F#
[<CLSCompliantAttribute(true)>]
type AbstractCardService =  
    class
        inherit MarshalByRefObject
        interface ICardService
        interface IDisposable
    end

Inheritance Hierarchy

System..::..Object
  System..::..MarshalByRefObject
    BasicCard.GenericCards..::..AbstractCardService
      BasicCard.BasicCards..::..AbstractBasicCardService

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also