System.Runtime.Serialization.SerializationInfoExtensions.UpdateValue C# (CSharp) Method

UpdateValue() public static method

public static UpdateValue ( this si, string name, object value, Type type ) : void
si this
name string
value object
type Type
return void
        public static void UpdateValue(this SerializationInfo si, string name, object value, Type type) =>
            s_updateValue(si, name, value, type);
    }
SerializationInfoExtensions