System.Runtime.Serialization.SerializationEvents.SerializationEvents C# (CSharp) Method

SerializationEvents() private method

private SerializationEvents ( Type t ) : System.Collections.Concurrent
t Type
return System.Collections.Concurrent
        internal SerializationEvents(Type t)
        {
            _onSerializingMethods = GetMethodsWithAttribute(typeof(OnSerializingAttribute), t);
            _onSerializedMethods = GetMethodsWithAttribute(typeof(OnSerializedAttribute), t);
            _onDeserializingMethods = GetMethodsWithAttribute(typeof(OnDeserializingAttribute), t);
            _onDeserializedMethods = GetMethodsWithAttribute(typeof(OnDeserializedAttribute), t);
        }