• API Documentation
Show / Hide Table of Contents
  • Rssdp
    • AggregateSsdpDeviceLocator
    • CustomHttpHeader
    • CustomHttpHeadersCollection
    • DeviceAvailableEventArgs
    • DeviceEventArgs
    • DeviceNetworkType
    • DeviceNetworkTypeExtensions
    • DeviceUnavailableEventArgs
    • DiscoveredSsdpDevice
    • ExceptionExtensions
    • ISsdpLogger
    • NullLogger
    • ServiceEventArgs
    • SocketClosedException
    • SocketFactory
    • SsdpDevice
    • SsdpDeviceExtensions
    • SsdpDeviceIcon
    • SsdpDeviceLocator
    • SsdpDevicePropertiesCollection
    • SsdpDeviceProperty
    • SsdpDevicePublisher
    • SsdpEmbeddedDevice
    • SsdpRootDevice
    • SsdpService
    • SsdpStandardsMode
    • SsdpTraceLogger
  • Rssdp.Infrastructure
    • DisposableManagedObjectBase
    • HttpParserBase<T>
    • HttpRequestParser
    • HttpResponseParser
    • ISocketFactory
    • ISsdpCommunicationsServer
    • ISsdpDeviceLocator
    • ISsdpDevicePublisher
    • IUdpSocket
    • IUpnpDeviceValidator
    • ReceivedUdpData
    • RequestReceivedEventArgs
    • ResponseReceivedEventArgs
    • SsdpCommunicationsServer
    • SsdpConstants
    • SsdpDeviceLocatorBase
    • SsdpDevicePublisherBase
    • UdpEndPoint
    • Upnp10DeviceValidator

Interface ISsdpLogger

Interface for a simple logging component used by RSSDP to record internal activity.

Namespace: Rssdp
Assembly: cs.temp.dll.dll
Syntax
public interface ISsdpLogger

Methods

LogError(String)

Records a message that represents an error.

Declaration
void LogError(string message)
Parameters
Type Name Description
System.String message

The text to be logged.

LogInfo(String)

Records a regular log message.

Declaration
void LogInfo(string message)
Parameters
Type Name Description
System.String message

The text to be logged.

LogVerbose(String)

Records a frequent or large log message usually only required when trying to trace a problem.

Declaration
void LogVerbose(string message)
Parameters
Type Name Description
System.String message

The text to be logged.

LogWarning(String)

Records an important message, but one that may not neccesarily be an error.

Declaration
void LogWarning(string message)
Parameters
Type Name Description
System.String message

The text to be logged.

In This Article
Back to top Copyright (c) 2015 Troy Willmot