System.Net.Sockets.Tests.LoggingTest.EventSource_ExistsWithCorrectId C# (CSharp) Метод

EventSource_ExistsWithCorrectId() приватный Метод

private EventSource_ExistsWithCorrectId ( ) : void
Результат void
        public static void EventSource_ExistsWithCorrectId()
        {
            Type esType = typeof(Socket).Assembly.GetType("System.Net.NetEventSource", throwOnError: true, ignoreCase: false);
            Assert.NotNull(esType);

            Assert.Equal("Microsoft-System-Net-Sockets", EventSource.GetName(esType));
            Assert.Equal(Guid.Parse("e03c0352-f9c9-56ff-0ea7-b94ba8cabc6b"), EventSource.GetGuid(esType));

            Assert.NotEmpty(EventSource.GenerateManifest(esType, esType.Assembly.Location));
        }