OpenHome.Git.BlobModifiableNew.BlobModifiableNew C# (CSharp) Method

BlobModifiableNew() private method

private BlobModifiableNew ( Repository aRepository, byte aContents, string aName, string aMode ) : System
aRepository Repository
aContents byte
aName string
aMode string
return System
        internal BlobModifiableNew(Repository aRepository, byte[] aContents, string aName, string aMode)
            : base(aRepository, aContents)
        {
            iName = aName;
            iMode = aMode;
        }
BlobModifiableNew