PitchingTube.Data.aspnet_Profile.Createaspnet_Profile C# (CSharp) Method

Createaspnet_Profile() public static method

Create a new aspnet_Profile object.
public static Createaspnet_Profile ( global userId, global propertyNames, global propertyValuesString, global propertyValuesBinary, global lastUpdatedDate ) : aspnet_Profile
userId global Initial value of the UserId property.
propertyNames global Initial value of the PropertyNames property.
propertyValuesString global Initial value of the PropertyValuesString property.
propertyValuesBinary global Initial value of the PropertyValuesBinary property.
lastUpdatedDate global Initial value of the LastUpdatedDate property.
return aspnet_Profile
        public static aspnet_Profile Createaspnet_Profile(global::System.Guid userId, global::System.String propertyNames, global::System.String propertyValuesString, global::System.Byte[] propertyValuesBinary, global::System.DateTime lastUpdatedDate)
        {
            aspnet_Profile aspnet_Profile = new aspnet_Profile();
            aspnet_Profile.UserId = userId;
            aspnet_Profile.PropertyNames = propertyNames;
            aspnet_Profile.PropertyValuesString = propertyValuesString;
            aspnet_Profile.PropertyValuesBinary = propertyValuesBinary;
            aspnet_Profile.LastUpdatedDate = lastUpdatedDate;
            return aspnet_Profile;
        }