C# 클래스 NetMQ.Core.Options

Class Options is essentially a container for socket-related option-settings.
파일 보기 프로젝트 열기: NetMQ/NetMQ3-x 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
GetSocketOption ( ZmqSocketOption option ) : object

Get the value of the specified option.

Options ( ) : System

Create a new Options object with all default values.

SetSocketOption ( ZmqSocketOption option, object optionValue ) : void

Assign the given optionValue to the specified option.

메소드 상세

GetSocketOption() 공개 메소드

Get the value of the specified option.
A valid option must be specified.
public GetSocketOption ( ZmqSocketOption option ) : object
option ZmqSocketOption a ZmqSocketOption that specifies what to get
리턴 object

Options() 공개 메소드

Create a new Options object with all default values.
public Options ( ) : System
리턴 System

SetSocketOption() 공개 메소드

Assign the given optionValue to the specified option.
The option and optionValue must be valid.
public SetSocketOption ( ZmqSocketOption option, object optionValue ) : void
option ZmqSocketOption a ZmqSocketOption that specifies what to set
optionValue object an Object that is the value to set that option to
리턴 void