skip to Main Content

Visual Studio Code – How to initialize class in VB the right way?

Question for the VB experts here! I have the following code in C#: public object BeforeSendRequest(ref Message request, IClientChannel channel) { HttpRequestMessageProperty httpRequestProperty = new HttpRequestMessageProperty() { Headers = { "test", "test" } }; request.Properties.Add(HttpRequestMessageProperty.Name, httpRequestProperty); return null; } I…

VIEW QUESTION
Back To Top
Search