  | SocketInterceptorConfigSetProperty Method  | 
 Sets a property.
 
    Namespace: 
   Hazelcast.Config
    Assembly:
   Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.2
Syntaxpublic virtual SocketInterceptorConfig SetProperty(
	string name,
	string value
)
Public Overridable Function SetProperty ( 
	name As String,
	value As String
) As SocketInterceptorConfig
public:
virtual SocketInterceptorConfig^ SetProperty(
	String^ name, 
	String^ value
)
abstract SetProperty : 
        name : string * 
        value : string -> SocketInterceptorConfig 
override SetProperty : 
        name : string * 
        value : string -> SocketInterceptorConfig Parameters
- name
 - Type: SystemString
the name of the property to set. - value
 - Type: SystemString
the value of the property to set 
Return Value
Type: 
SocketInterceptorConfigthe updated SocketInterceptorConfig
Exceptions| Exception | Condition | 
|---|
| ArgumentNullException | if name or value is null. | 
RemarksSets a property.
See Also