1 write to communicationObject
System.ServiceModel (1)
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (1)
119
communicationObject
= new WrapperSecurityCommunicationObject(this);
23 references to communicationObject
System.ServiceModel (23)
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (23)
136
get { return this.
communicationObject
; }
141
add { this.
communicationObject
.Closed += value; }
142
remove { this.
communicationObject
.Closed -= value; }
147
add { this.
communicationObject
.Closing += value; }
148
remove { this.
communicationObject
.Closing -= value; }
153
add { this.
communicationObject
.Faulted += value; }
154
remove { this.
communicationObject
.Faulted -= value; }
159
add { this.
communicationObject
.Opened += value; }
160
remove { this.
communicationObject
.Opened -= value; }
165
add { this.
communicationObject
.Opening += value; }
166
remove { this.
communicationObject
.Opening -= value; }
171
get { return this.
communicationObject
.State; }
187
this.
communicationObject
.Abort();
192
this.
communicationObject
.Close();
197
this.
communicationObject
.Close(timeout);
202
return this.
communicationObject
.BeginClose(callback, state);
207
return this.
communicationObject
.BeginClose(timeout, callback, state);
212
this.
communicationObject
.EndClose(result);
217
this.
communicationObject
.Open();
222
this.
communicationObject
.Open(timeout);
227
return this.
communicationObject
.BeginOpen(callback, state);
232
return this.
communicationObject
.BeginOpen(timeout, callback, state);
237
this.
communicationObject
.EndOpen(result);