10 references to AccessDenied
System.Net (9)
net\UdpAnySourceMulticastClient.cs (5)
19
public IAsyncResult BeginJoinGroup(AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.
AccessDenied
)); }
24
public IAsyncResult BeginReceiveFromGroup(byte[] buffer, int offset, int count, AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.
AccessDenied
)); }
29
public IAsyncResult BeginSendTo(byte[] buffer, int offset, int count, IPEndPoint remoteEndPoint, AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.
AccessDenied
)); }
34
public IAsyncResult BeginSendToGroup(byte[] buffer, int offset, int count, AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.
AccessDenied
)); }
54
public int EndReceiveFromGroup(IAsyncResult result, out IPEndPoint source) { throw new SocketException((int)(SocketError.
AccessDenied
)); }
net\UdpSingleSourceMulticastClient.cs (4)
19
public IAsyncResult BeginJoinGroup(AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.
AccessDenied
)); }
24
public IAsyncResult BeginReceiveFromSource(byte[] buffer, int offset, int count, AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.
AccessDenied
)); }
29
public IAsyncResult BeginSendToSource(byte[] buffer, int offset, int count, int remotePort, AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.
AccessDenied
)); }
44
public int EndReceiveFromSource(IAsyncResult result, out int sourcePort) { throw new SocketException((int)(SocketError.
AccessDenied
)); }
System.ServiceModel.Channels (1)
System\ServiceModel\Channels\UdpUtility.cs (1)
434
else if (ex.SocketErrorCode == SocketError.
AccessDenied
)